summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/m_genmenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/src/m_genmenu.cpp')
-rw-r--r--plugins/MirLua/src/m_genmenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirLua/src/m_genmenu.cpp b/plugins/MirLua/src/m_genmenu.cpp
index 76b54649e9..7fabed093b 100644
--- a/plugins/MirLua/src/m_genmenu.cpp
+++ b/plugins/MirLua/src/m_genmenu.cpp
@@ -117,9 +117,9 @@ static int lua_ShowMenuItem(lua_State *L)
static int lua_EnableMenuItem(lua_State *L)
{
HGENMENU hMenuItem = (HGENMENU)lua_touserdata(L, 1);
- bool isShow = (HGENMENU)lua_toboolean(L, 2);
+ bool isEnable = (HGENMENU)lua_toboolean(L, 2);
- ::Menu_EnableItem(hMenuItem, isShow);
+ ::Menu_EnableItem(hMenuItem, isEnable);
return 0;
}