summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/src/Modules')
-rw-r--r--plugins/MirLua/src/Modules/m_core.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/MirLua/src/Modules/m_core.cpp b/plugins/MirLua/src/Modules/m_core.cpp
index 1a250ffccf..90f022a9dc 100644
--- a/plugins/MirLua/src/Modules/m_core.cpp
+++ b/plugins/MirLua/src/Modules/m_core.cpp
@@ -21,12 +21,12 @@ static int HookEventLuaParam(void *obj, WPARAM wParam, LPARAM lParam, LPARAM par
lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
if (wParam)
- lua_pushlightuserdata(L, (void*)wParam);
+ lua_pushinteger(L, wParam);
else
lua_pushnil(L);
if (lParam)
- lua_pushlightuserdata(L, (void*)lParam);
+ lua_pushinteger(L, lParam);
else
lua_pushnil(L);
@@ -122,8 +122,8 @@ INT_PTR CreateServiceFunctionLuaStateParam(void *obj, WPARAM wParam, LPARAM lPar
int ref = param;
lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
- lua_pushlightuserdata(L, (void*)wParam);
- lua_pushlightuserdata(L, (void*)lParam);
+ lua_pushinteger(L, wParam);
+ lua_pushinteger(L, lParam);
luaM_pcall(L, 2, 1);
INT_PTR res = lua_tointeger(L, 1);