chore: don't panic on unsupported BG mode

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-01-30 02:43:11 -04:00
parent e35d81eeb8
commit f6e4b4931f
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ pub const Ppu = struct {
self.frame_buf[fb_start + fb_i] = self.palette.buf[byte];
}
},
else => std.debug.panic("[PPU] TODO: Implement BG Mode {}", .{bg_mode}),
else => {}, // std.debug.panic("[PPU] TODO: Implement BG Mode {}", .{bg_mode}),
}
}
};