From 4274d999f9d400e74dbb280ec3ecb1c44618b288 Mon Sep 17 00:00:00 2001 From: Flameshadowxeroshin Date: Tue, 27 Mar 2012 23:09:35 +0000 Subject: [PATCH] hopefully fix compile --- src/PlayerStageStats.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/PlayerStageStats.cpp b/src/PlayerStageStats.cpp index 10eb13cada..b4b418de05 100644 --- a/src/PlayerStageStats.cpp +++ b/src/PlayerStageStats.cpp @@ -744,7 +744,8 @@ public: static int GetRadarActual( T* p, lua_State *L ) { p->m_radarActual.PushSelf(L); return 1; } static int SetCurCombo( T* p, lua_State *L ) { - int arg = IArg(1); + int arg; + arg = IArg(1); if( arg >= 0 ) { p->m_iCurMissCombo = 0; @@ -757,7 +758,8 @@ public: } static int SetCurMissCombo( T* p, lua_State *L) { - int arg = IArg(1); + int arg; + arg = IArg(1); if( arg >= 0 ) { p->m_iCurCombo = 0;