[Remove] Cleaned up an additional lua_remove() call.

This commit is contained in:
Allanis 2014-03-18 15:17:07 +00:00
parent 1fcc6be891
commit 770bad9ecc

View File

@ -307,13 +307,13 @@ int conf_loadConfig(const char* file) {
/* Set the keybind. */ /* Set the keybind. */
input_setKeybind((char*)keybindNames[i], type, key, m, reverse); input_setKeybind((char*)keybindNames[i], type, key, m, reverse);
} else } else {
WARN("Malformed keybind in %s", file); WARN("Malformed keybind in %s", file);
}
/* Clean up after table crap. */ /* Clean up after table crap. */
lua_remove(L,-1); lua_remove(L,-1);
} }
lua_remove(L, -1);
} }
} else { } else {
/* Failed to load the config file.. */ /* Failed to load the config file.. */