Remove uint to make MacOS happy

Signed-off-by: Tin <tin.svagelj@live.com>
This commit is contained in:
Tin 2023-11-08 04:37:21 +01:00 committed by Brenden Matthews
parent 544a9060b8
commit b5652006ef
No known key found for this signature in database
GPG Key ID: 137B7AC2BDFD8DF0
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ void push_table_value(lua_State *L, std::string key, int value) {
lua_settable(L, -3);
}
void push_table_value(lua_State *L, std::string key, uint value) {
void push_table_value(lua_State *L, std::string key, uint32_t value) {
lua_pushstring(L, key.c_str());
lua_pushinteger(L, value);
lua_settable(L, -3);