Edited src/luaconsole.c via GitHub

This commit is contained in:
Simon Robertshaw 2011-08-01 10:59:33 +02:00
parent 89e47bfa4d
commit 8dfa09bf6a

View File

@ -857,7 +857,10 @@ int luatpt_active_menu(lua_State* l)
{
int aheatstate;
aheatstate = luaL_optint(l, 1, menu_count);
active_menu = aheatstate;
if (aheatstate < SC_TOTAL)
active_menu = aheatstate;
else
return luaL_error(l, "Menu does not exist");
return 0;
}
int luatpt_decorations_enable(lua_State* l)