Codechange: rename Tile to TileBase to be able to introduce a new Tile class

This commit is contained in:
Rubidium
2023-01-21 15:16:28 +01:00
committed by rubidium42
parent 0fb0469e47
commit 7a1816a6cd
3 changed files with 6 additions and 6 deletions

View File

@@ -27,7 +27,7 @@ extern "C" _CRTIMP void __cdecl _assert(void *, void *, unsigned);
/* static */ uint Map::size; ///< The number of tiles on the map
/* static */ uint Map::tile_mask; ///< _map_size - 1 (to mask the mapsize)
Tile *_m = nullptr; ///< Tiles of the map
TileBase *_m = nullptr; ///< Tiles of the map
TileExtended *_me = nullptr; ///< Extended Tiles of the map
@@ -59,7 +59,7 @@ TileExtended *_me = nullptr; ///< Extended Tiles of the map
free(_m);
free(_me);
_m = CallocT<Tile>(Map::size);
_m = CallocT<TileBase>(Map::size);
_me = CallocT<TileExtended>(Map::size);
}