Merge branch 'metalrecording' into 'next'

Expose `metalrecording` global to Lua.

See merge request STJr/SRB2!1536
This commit is contained in:
sphere 2021-06-06 07:08:42 -04:00
commit 2bc707305b

View file

@ -184,6 +184,9 @@ int LUA_PushGlobals(lua_State *L, const char *word)
} else if (fastcmp(word,"modeattacking")) {
lua_pushboolean(L, modeattacking);
return 1;
} else if (fastcmp(word,"metalrecording")) {
lua_pushboolean(L, metalrecording);
return 1;
} else if (fastcmp(word,"splitscreen")) {
lua_pushboolean(L, splitscreen);
return 1;