summaryrefslogtreecommitdiff
path: root/src/emulators/graphical_emulator.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/emulators/graphical_emulator.rs')
-rw-r--r--src/emulators/graphical_emulator.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emulators/graphical_emulator.rs b/src/emulators/graphical_emulator.rs
index 1e048de..a183262 100644
--- a/src/emulators/graphical_emulator.rs
+++ b/src/emulators/graphical_emulator.rs
@@ -107,6 +107,7 @@ pub struct GraphicalEmulator {
pub render_mark: Instant,
pub debug_palette: Option<[Colour; 16]>,
pub show_debug_palette: bool,
+ pub show_cursor: bool,
}
impl GraphicalEmulator {
@@ -121,6 +122,7 @@ impl GraphicalEmulator {
render_mark: Instant::now(),
debug_palette: config.debug_palette,
show_debug_palette: config.debug_palette.is_some(),
+ show_cursor: config.show_cursor,
}
}