diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-07-15 11:39:17 +1200 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-07-15 11:39:17 +1200 |
commit | 738dd7801c8213228d39f83553a785f1219929c3 (patch) | |
tree | a4c8ea7e2ac0ddbcf0a0565b00a1956710d819f8 /src/bin/br | |
parent | 4e3ee9c9d61ff1e05a7881c92d4414a2ae1da784 (diff) | |
download | bedrock-pc-738dd7801c8213228d39f83553a785f1219929c3.zip |
Add logging for starting and promoting a dynamic emulator
This commit changes the message shown when starting the emulator with
dynamic mode, to make it clear that the window will be hidden initially,
and also adds a message for when the emulator window is made visible.
Diffstat (limited to 'src/bin/br')
-rw-r--r-- | src/bin/br/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/br/main.rs b/src/bin/br/main.rs index 8e88caf..11505cb 100644 --- a/src/bin/br/main.rs +++ b/src/bin/br/main.rs @@ -133,7 +133,7 @@ fn main() { if let Ok(phosphor) = Phosphor::new() { match mode { Mode::Dynamic => { - info!("Starting graphical emulator"); + info!("Starting graphical emulator (hidden)"); let mut emulator = GraphicalEmulator::new(config, debug); emulator.load_program(&bytecode); emulator.run(phosphor, false); |