Skip to content

Commit

Permalink
Merge pull request #104 from Wade7wastaken/dev
Browse files Browse the repository at this point in the history
Remove duplicate gui function
  • Loading branch information
Aurumaker72 authored Jun 18, 2023
2 parents 2760acf + 4bd3bd1 commit e304bfa
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions lua/LuaConsole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ namespace LuaEngine {
AddrBreakFuncVec::iterator RemovePCBreak(AddrBreakFuncVec& f, AddrBreakFuncVec::iterator it);
extern const luaL_Reg globalFuncs[];
extern const luaL_Reg emuFuncs[];
extern const luaL_Reg guiFuncs[];
extern const luaL_Reg wguiFuncs[];
extern const luaL_Reg memoryFuncs[];
extern const luaL_Reg inputFuncs[];
Expand Down Expand Up @@ -350,7 +349,6 @@ namespace LuaEngine {
} while ((++p)->func);
registerAsPackage(L, "emu", emuFuncs);
registerAsPackage(L, "memory", memoryFuncs);
registerAsPackage(L, "gui", guiFuncs);
registerAsPackage(L, "wgui", wguiFuncs);
registerAsPackage(L, "input", inputFuncs);
registerAsPackage(L, "joypad", joypadFuncs);
Expand Down Expand Up @@ -3262,11 +3260,6 @@ namespace LuaEngine {
{NULL, NULL}
};

const luaL_Reg guiFuncs[] = {
{"register", RegisterUpdateScreen},
{NULL, NULL}
};

//winAPI GDI�֐���
const luaL_Reg wguiFuncs[] = {

Expand Down

0 comments on commit e304bfa

Please sign in to comment.