Fix isNan on setYaw Lua call (#7380)

* Fix isNan on setYaw Lua call
This commit is contained in:
Loïc Blot
2018-05-31 22:52:08 +02:00
committed by GitHub
parent df991edaa8
commit 162ffd7fba
7 changed files with 30 additions and 1 deletions

View File

@@ -69,4 +69,6 @@ class ModApiBase {
const char* name,
lua_CFunction func,
int top);
static bool isNaN(lua_State *L, int idx);
};