sound: Comment out spamming printlns for now
TODO - replace when decent logging module is in place Former-commit-id: bfcfe07a0506aa9b4f2fa4e33863afdb74f6783c
This commit is contained in:
parent
05f1085410
commit
0872ff650a
|
@ -179,20 +179,20 @@ impl SoundController {
|
||||||
REG_SOUNDBIAS => self.sound_bias,
|
REG_SOUNDBIAS => self.sound_bias,
|
||||||
|
|
||||||
_ => {
|
_ => {
|
||||||
println!(
|
// println!(
|
||||||
"Unimplemented read from {:x} {}",
|
// "Unimplemented read from {:x} {}",
|
||||||
io_addr,
|
// io_addr,
|
||||||
io_reg_string(io_addr)
|
// io_reg_string(io_addr)
|
||||||
);
|
// );
|
||||||
0
|
0
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
println!(
|
// println!(
|
||||||
"Read {} ({:08x}) = {:04x}",
|
// "Read {} ({:08x}) = {:04x}",
|
||||||
io_reg_string(io_addr),
|
// io_reg_string(io_addr),
|
||||||
io_addr,
|
// io_addr,
|
||||||
value
|
// value
|
||||||
);
|
// );
|
||||||
value
|
value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -289,11 +289,11 @@ impl SoundController {
|
||||||
},
|
},
|
||||||
|
|
||||||
_ => {
|
_ => {
|
||||||
println!(
|
// println!(
|
||||||
"Unimplemented write to {:x} {}",
|
// "Unimplemented write to {:x} {}",
|
||||||
io_addr,
|
// io_addr,
|
||||||
io_reg_string(io_addr)
|
// io_reg_string(io_addr)
|
||||||
);
|
// );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue