From ac5a1d35ae19d4e7c3b4003842d17d1151e44110 Mon Sep 17 00:00:00 2001 From: Myk Date: Fri, 18 Nov 2022 17:39:49 -0800 Subject: [PATCH] remove duplicate function definition --- library/LuaApi.cpp | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/library/LuaApi.cpp b/library/LuaApi.cpp index 51a58d948..36d132124 100644 --- a/library/LuaApi.cpp +++ b/library/LuaApi.cpp @@ -1554,26 +1554,6 @@ static int gui_autoDFAnnouncement(lua_State *state) return 1; } -static int gui_getDwarfmodeViewDims(lua_State *state) -{ - auto dims = Gui::getDwarfmodeViewDims(); - lua_newtable(state); - Lua::TableInsert(state, "map_x1", dims.map_x1); - Lua::TableInsert(state, "map_x2", dims.map_x2); - Lua::TableInsert(state, "menu_x1", dims.menu_x1); - Lua::TableInsert(state, "menu_x2", dims.menu_x2); - Lua::TableInsert(state, "area_x1", dims.area_x1); - Lua::TableInsert(state, "area_x2", dims.area_x2); - Lua::TableInsert(state, "y1", dims.y1); - Lua::TableInsert(state, "y2", dims.y2); - Lua::TableInsert(state, "map_y1", dims.map_y1); - Lua::TableInsert(state, "map_y2", dims.map_y2); - Lua::TableInsert(state, "menu_on", dims.menu_on); - Lua::TableInsert(state, "area_on", dims.area_on); - Lua::TableInsert(state, "menu_forced", dims.menu_forced); - return 1; -} - static int gui_pauseRecenter(lua_State *state) { bool rv;