summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/script/lua_api/l_internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script/lua_api/l_internal.h b/src/script/lua_api/l_internal.h
index a10c259ba..672e535ca 100644
--- a/src/script/lua_api/l_internal.h
+++ b/src/script/lua_api/l_internal.h
@@ -32,12 +32,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define luamethod_dep(class, good, bad) \
{#bad, [](lua_State *L) -> int { \
- return l_deprecated_function(L, #bad, #good, &class::l_##good); \
+ return l_deprecated_function(L, #good, #bad, &class::l_##good); \
}}
-#define luamethod_aliased(class, name, alias) \
- luamethod(class, name), \
- luamethod_dep(class, name, alias)
+#define luamethod_aliased(class, good, bad) \
+ luamethod(class, good), \
+ luamethod_dep(class, good, bad)
#define API_FCT(name) registerFunction(L, #name, l_##name, top)