fix(cartridge): remove unnecessary dbg statement

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-08-20 00:17:05 -05:00
parent 3c2456611e
commit b87e31d3f4
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ impl Cartridge {
} }
fn detect_rom_info(memory: &[u8]) -> RomSize { fn detect_rom_info(memory: &[u8]) -> RomSize {
let id = dbg!(memory[ROM_SIZE_ADDRESS]); let id = memory[ROM_SIZE_ADDRESS];
id.into() id.into()
} }