Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeno- committed Mar 29, 2015
1 parent e3d69f2 commit 3410101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/lua_api/l_mainmenu.cpp
Expand Up @@ -840,7 +840,7 @@ int ModApiMainMenu::l_copy_dir(lua_State *L)
int ModApiMainMenu::l_extract_zip(lua_State *L)
{
GUIEngine* engine = getGuiEngine(L);
sanity_check(engine != NULL);(engine != 0);
sanity_check(engine);

const char *zipfile = luaL_checkstring(L, 1);
const char *destination = luaL_checkstring(L, 2);
Expand Down

0 comments on commit 3410101

Please sign in to comment.