summaryrefslogtreecommitdiff
path: root/Source/3rdParty/Luax/luax_state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/3rdParty/Luax/luax_state.cpp')
-rw-r--r--Source/3rdParty/Luax/luax_state.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/3rdParty/Luax/luax_state.cpp b/Source/3rdParty/Luax/luax_state.cpp
index 1414591..a60a021 100644
--- a/Source/3rdParty/Luax/luax_state.cpp
+++ b/Source/3rdParty/Luax/luax_state.cpp
@@ -100,9 +100,9 @@ namespace Luax
return idx;
}
- int LuaxState::Call(int nArgs, int nResults)
+ void LuaxState::Call(int nArgs, int nResults)
{
- return 0;
+ lua_pcall(mState, nArgs, nResults, 0);
}
void LuaxState::PushNil()