Core/Grids: fixed build with clang 10

This commit is contained in:
Ovahlord
2019-12-08 21:09:06 +01:00
parent 12842e5786
commit 141a548062

View File

@@ -90,7 +90,7 @@ class NGrid
}
uint32 GetGridId(void) const { return i_gridId; }
void SetGridId(const uint32 id) const { i_gridId = id; }
void SetGridId(const uint32 id) { i_gridId = id; }
grid_state_t GetGridState(void) const { return i_cellstate; }
void SetGridState(grid_state_t s) { i_cellstate = s; }
int32 getX() const { return i_x; }