chore: remove unecessary eprintln! statements
This commit is contained in:
parent
0538522aa2
commit
e2fa72aa0e
|
@ -146,7 +146,7 @@ impl Bus {
|
|||
0xFF4A => self.ppu.pos.window_y,
|
||||
0xFF4B => self.ppu.pos.window_x,
|
||||
0xFF4D => {
|
||||
eprintln!("Reading from {:#06X} is available in CGB Mode only", addr);
|
||||
// Reading from this address is useful on the CGB only
|
||||
0x00
|
||||
}
|
||||
_ => unimplemented!("Unable to read {:#06X} in I/O Registers", addr),
|
||||
|
@ -246,10 +246,7 @@ impl Bus {
|
|||
0xFF4A => self.ppu.pos.window_y = byte,
|
||||
0xFF4B => self.ppu.pos.window_x = byte,
|
||||
0xFF4D => {
|
||||
eprintln!(
|
||||
"Writing {:#04X} to {:#06X} is available in CGB Mode only",
|
||||
byte, addr
|
||||
);
|
||||
// Writing to this address is useful on the CGB only
|
||||
}
|
||||
0xFF50 => {
|
||||
// Disable Boot ROM
|
||||
|
|
Loading…
Reference in New Issue