From 588922fecf1a002c413301363d4a8f094ca956ea Mon Sep 17 00:00:00 2001 From: Pyfisch Date: Wed, 10 May 2017 21:54:32 +0200 Subject: [PATCH] Remove "Must be used with -w option" note --- components/config/opts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/config/opts.rs b/components/config/opts.rs index 95917edb062..1fd59b8a7e4 100644 --- a/components/config/opts.rs +++ b/components/config/opts.rs @@ -426,8 +426,8 @@ fn print_debug_usage(app: &str) -> ! { print_option("wr-stats", "Show WebRender profiler on screen."); print_option("msaa", "Use multisample antialiasing in WebRender."); print_option("full-backtraces", "Print full backtraces for all errors"); - print_option("wr-debug", "Display webrender tile borders. Must be used with -w option."); - print_option("precache-shaders", "Compile all shaders during init. Must be used with -w option."); + print_option("wr-debug", "Display webrender tile borders."); + print_option("precache-shaders", "Compile all shaders during init."); print_option("signpost", "Emit native OS signposts for profile events (currently macOS only)"); println!("");