Fixed segfault after placing over 255 of any tile.

This commit is contained in:
Ryan "Lofenyy" Medeiros 2023-07-01 10:16:20 -06:00
parent 4a6bba447a
commit 0a74aa8ff3
1 changed files with 5 additions and 5 deletions

View File

@ -93,11 +93,11 @@ struct maps
struct Door *Door;
struct Info *Info;
struct Char *Char;
uint_fast8_t nItem;
uint_fast8_t nBase;
uint_fast8_t nDoor;
uint_fast8_t nInfo;
uint_fast8_t nChar;
uint_fast32_t nItem;
uint_fast32_t nBase;
uint_fast32_t nDoor;
uint_fast32_t nInfo;
uint_fast32_t nChar;
};
struct maps *map = NULL;
uint_fast8_t nMap = 0;