chore: remove panics when gameboy performs certain actions

This commit is contained in:
2021-04-08 19:22:55 -05:00
parent 41081e9cce
commit 23de87e482
2 changed files with 11 additions and 4 deletions

View File

@@ -221,8 +221,8 @@ impl MemoryBankController for NoMbc {
MbcResult::Address(addr)
}
fn handle_write(&mut self, _addr: u16, _byte: u8) {
panic!("A MBC-less cartridge is read only")
fn handle_write(&mut self, _addr: u16, byte: u8) {
eprintln!("Tried to write {:#04X} to a read-only cartridge", byte);
}
}