From ab39fa278e9fbadd836c83ba1ee846d067d3a7ba Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 14 Feb 2005 01:33:53 +0000 Subject: [PATCH] fix compile --- stepmania/src/LuaReference.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/LuaReference.cpp b/stepmania/src/LuaReference.cpp index 5ed72d82f5..c307de7801 100644 --- a/stepmania/src/LuaReference.cpp +++ b/stepmania/src/LuaReference.cpp @@ -68,7 +68,7 @@ bool LuaReference::IsSet() const int LuaReference::GetLuaType() const { - this->PushSelf(); + this->PushSelf( LUA->L ); int iRet = lua_type( LUA->L, -1 ); lua_pop( LUA->L, 1 ); return iRet;