quick check with linters

This commit is contained in:
MihailRis
2024-05-10 12:34:05 +03:00
parent 92f185ab51
commit 9522aedeec
55 changed files with 129 additions and 184 deletions
+2 -2
View File
@@ -39,7 +39,7 @@ static int l_open_world(lua_State* L) {
return 0;
}
static int l_reopen_world(lua_State* L) {
static int l_reopen_world(lua_State*) {
auto controller = scripting::engine->getController();
controller->reopenWorld(scripting::level->getWorld());
return 0;
@@ -151,7 +151,7 @@ static int l_get_setting_info(lua_State* L) {
return 0;
}
static int l_quit(lua_State* L) {
static int l_quit(lua_State*) {
Window::setShouldClose(true);
return 0;
}