Fix build

This commit is contained in:
fed 2022-01-31 09:15:11 +01:00
parent 3a683f7171
commit d131749a3c
2 changed files with 9 additions and 5 deletions

View File

@ -1187,7 +1187,11 @@ namespace ui_scripting::lua
game_type["isdebugbuild"] = [](const game&) game_type["isdebugbuild"] = [](const game&)
{ {
return DEBUG; #ifdef DEBUG
return true;
#else
return false;
#endif
}; };
struct player struct player