diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2024-10-29 13:58:19 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2024-10-29 13:59:44 +1300 |
commit | c42e2154d88c23a28f83fe96f4153e821ef00c0e (patch) | |
tree | 152b75b7077b03065696ea8b6bf670c628cea683 /src/emulators.rs | |
parent | 41366dea0ee6702f4cb5f9bc12d62530c46c8c12 (diff) | |
download | bedrock-pc-c42e2154d88c23a28f83fe96f4153e821ef00c0e.zip |
Add option to show mouse cursor
This is to assist with debugging, when a program hasn't yet implemented
its own mouse cursor. Phosphor had to be updated to properly support
this.
Diffstat (limited to 'src/emulators.rs')
-rw-r--r-- | src/emulators.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emulators.rs b/src/emulators.rs index a2e9091..fcebe1d 100644 --- a/src/emulators.rs +++ b/src/emulators.rs @@ -20,6 +20,7 @@ pub struct EmulatorConfig { pub fullscreen: bool, pub scale: u32, pub debug_palette: Option<[Colour; 16]>, + pub show_cursor: bool, pub initial_transmission: Option<Vec<u8>>, pub decode_stdin: bool, |