diff --git a/core/src/player.rs b/core/src/player.rs index 4374d3b42..423f7d690 100644 --- a/core/src/player.rs +++ b/core/src/player.rs @@ -853,14 +853,12 @@ impl Player { self.mutate_with_update_context(|context| { if context.avm1.show_debug_output() { log::info!( - "AVM Debugging turned off! Press CTRL+ALT+D to turn off again." + "AVM Debugging turned off! Press CTRL+ALT+D to turn on again." ); context.avm1.set_show_debug_output(false); context.avm2.set_show_debug_output(false); } else { - log::info!( - "AVM Debugging turned on! Press CTRL+ALT+D to turn on again." - ); + log::info!("AVM Debugging turned on! Press CTRL+ALT+D to turn off."); context.avm1.set_show_debug_output(true); context.avm2.set_show_debug_output(true); }