Add gfx::PaletteSet type

This commit is contained in:
scawful
2024-01-28 12:04:00 -05:00
parent e086f12ade
commit 4463e6be32
4 changed files with 28 additions and 35 deletions

View File

@@ -278,8 +278,6 @@ PaletteGroup CreatePaletteGroupFromColFile(
PaletteGroup CreatePaletteGroupFromLargePalette(SNESPalette& palette) {
PaletteGroup toret;
std::cout << "Palette size is " << palette.size() << std::endl;
for (int i = 0; i < palette.size(); i += 8) {
SNESPalette new_palette;
if (i + 8 < palette.size()) {