Disable debugging by default

This commit is contained in:
2024-07-21 16:34:35 -05:00
parent 214722a45d
commit 447642f0b2

View File

@@ -16,8 +16,8 @@ pub struct DebugOptions {
impl DebugOptions {
pub fn new() -> Self {
Self {
enable_debugging: true,
show_debug_options_window: true,
enable_debugging: false,
show_debug_options_window: false,
memory_map_conrtrol_options: MemoryMapControlOptions::new(),
cpu_debug_control_options: CPUDebugControlOptions::new(),
ppu_debug_control_options: PPUDebugControlOptions::new(),