diff options
| author | chai <chaifix@163.com> | 2019-03-16 19:29:23 +0800 |
|---|---|---|
| committer | chai <chaifix@163.com> | 2019-03-16 19:29:23 +0800 |
| commit | d29f5f4aebd90b1e256967801b28a5990249b2e7 (patch) | |
| tree | f4f1390b57a39e0493e0f74b40dd3996d88d04e5 /Source/3rdParty/Luax/luax_state.cpp | |
| parent | 1ab2501db0f9e14f138292880e37120e7a6184de (diff) | |
*luax
Diffstat (limited to 'Source/3rdParty/Luax/luax_state.cpp')
| -rw-r--r-- | Source/3rdParty/Luax/luax_state.cpp | 4 |
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() |
