You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/rom.rs
+1-5
Original file line number
Diff line number
Diff line change
@@ -54,11 +54,7 @@ impl Rom {
54
54
let hi = control_byte_2 &0b1111_0000;
55
55
let rom_mapper_type = hi + lo;
56
56
57
-
let mapper = match rom_mapper_type {
58
-
// 0 => Mapper::Zero,
59
-
// _ => todo!(),
60
-
_ => Mapper::Zero,// TODO: Hack to get tiles viewing.. but should revert to TODO. Why is mapper saying `0x40` (64) for some games even though it should be 0?
61
-
};
57
+
let mapper = Mapper::Zero;
62
58
63
59
let mirroring = match(is_four_screen, is_vertical_screen){
0 commit comments