From 57c4825da2e815793f005a754c0910fe7e1e8b67 Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 9 Jul 2022 18:41:58 -0400 Subject: [PATCH] Remove TilePreset struct --- src/app/gfx/tile.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/app/gfx/tile.h b/src/app/gfx/tile.h index cbca3e7f..0400acf4 100644 --- a/src/app/gfx/tile.h +++ b/src/app/gfx/tile.h @@ -84,18 +84,6 @@ void BuildTiles16Gfx(uchar* mapblockset16, uchar* currentOWgfx16Ptr, void CopyTile16(int x, int y, int xx, int yy, int offset, TileInfo tile, uchar* gfx16Pointer, uchar* gfx8Pointer); -class TilePreset { - public: - TilePreset() = default; - bool no_zero_color_ = false; - int pc_tiles_location_ = 0; - int pc_palette_location_ = 0; - int bits_per_pixel_ = 0; - int length_ = 0; - int SNESTilesLocation = 0; - int SNESPaletteLocation = 0; -}; - } // namespace gfx } // namespace app } // namespace yaze