remove getbitmap function and local bitmap var

This commit is contained in:
scawful
2022-09-03 18:30:01 -05:00
parent 2c26914c9c
commit 2fa0908111

View File

@@ -28,7 +28,6 @@ class OverworldMap {
absl::Status BuildMap(int count, int game_state, int world, uchar* map_parent,
OWBlockset& world_blockset);
gfx::Bitmap& GetBitmap() { return bitmap_; }
auto GetCurrentGraphicsSet() const { return current_graphics_sheet_set; }
auto GetCurrentBlockset() const { return current_blockset_; }
auto GetCurrentGraphics() const { return current_gfx_; }
@@ -67,7 +66,6 @@ class OverworldMap {
Bytes current_blockset_;
Bytes current_gfx_;
Bytes bitmap_data_;
gfx::Bitmap bitmap_;
OWMapTiles map_tiles_;
std::vector<gfx::Tile16> tiles16_;