From 0872ff650a96d29e770c749e1060e841c0657803 Mon Sep 17 00:00:00 2001 From: Michel Heily Date: Wed, 1 Jan 2020 00:00:08 +0200 Subject: [PATCH] sound: Comment out spamming printlns for now TODO - replace when decent logging module is in place Former-commit-id: bfcfe07a0506aa9b4f2fa4e33863afdb74f6783c --- src/core/sound/mod.rs | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/core/sound/mod.rs b/src/core/sound/mod.rs index 6c782de..79f0049 100644 --- a/src/core/sound/mod.rs +++ b/src/core/sound/mod.rs @@ -179,20 +179,20 @@ impl SoundController { REG_SOUNDBIAS => self.sound_bias, _ => { - println!( - "Unimplemented read from {:x} {}", - io_addr, - io_reg_string(io_addr) - ); + // println!( + // "Unimplemented read from {:x} {}", + // io_addr, + // io_reg_string(io_addr) + // ); 0 } }; - println!( - "Read {} ({:08x}) = {:04x}", - io_reg_string(io_addr), - io_addr, - value - ); + // println!( + // "Read {} ({:08x}) = {:04x}", + // io_reg_string(io_addr), + // io_addr, + // value + // ); value } @@ -289,11 +289,11 @@ impl SoundController { }, _ => { - println!( - "Unimplemented write to {:x} {}", - io_addr, - io_reg_string(io_addr) - ); + // println!( + // "Unimplemented write to {:x} {}", + // io_addr, + // io_reg_string(io_addr) + // ); } } }