GRIM: Fix luaA_passresults() int32/int discrepancy

Linking would fail with MSVC when building for win32 with 'long' used
as the int32 typedef.
This commit is contained in:
Donovan Watteau 2022-12-22 22:34:59 +01:00 committed by Eugene Sandulenko
parent 6239c87416
commit e4ed41950d

View File

@ -53,7 +53,7 @@ byte clamp_color(int c) {
return c;
}
int luaA_passresults();
int32 luaA_passresults();
void Lua_V1::new_dofile() {
const char *fname_str = luaL_check_string(1);