Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicate gui function #104

Merged
merged 3 commits into from
Jun 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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