mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-25 19:43:22 +00:00
remove gL check
This commit is contained in:
parent
6ca6c094db
commit
5ef97a6ec8
1 changed files with 1 additions and 1 deletions
|
|
@ -614,7 +614,7 @@ static int lib_hudenabled(lua_State *L)
|
|||
{
|
||||
enum hud option = luaL_checkoption(L, 1, NULL, hud_disable_options);
|
||||
lua_settop(L, 2);
|
||||
if (!gL || hud_enabled[option/8] & (1<<(option%8)))
|
||||
if (hud_enabled[option/8] & (1<<(option%8)))
|
||||
lua_pushboolean(L, true);
|
||||
else
|
||||
lua_pushboolean(L, false);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue