cleaning up the mess i've made

This commit is contained in:
scawful
2022-06-13 22:17:44 -04:00
parent 855152f19b
commit c6904fb0c7
7 changed files with 33 additions and 56 deletions

View File

@@ -88,17 +88,15 @@ class TilesPattern {
class TilePreset {
public:
TilePreset();
bool paletteNoZeroColor;
int pcTilesLocation;
uint16_t SNESTilesLocation;
uint16_t SNESPaletteLocation;
uint32_t pcPaletteLocation;
uint32_t length;
uint32_t bpp;
TilePreset() = default;
TilesPattern tilesPattern;
bool no_zero_color_ = false;
int pc_tiles_location_ = -1;
int pc_palette_location_ = 0;
uint32_t length_ = 0;
uint32_t bits_per_pixel_ = 0;
uint16_t SNESTilesLocation = 0;
uint16_t SNESPaletteLocation = 0;
};
} // namespace Graphics