chore: don't panic on unsupported BG mode

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-10-21 05:12:08 -03:00
parent 391096872e
commit 3a6951d93d
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]; 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}),
} }
} }
}; };