hopefully fix compile

This commit is contained in:
Flameshadowxeroshin
2012-03-27 23:09:35 +00:00
parent 751d4573fe
commit 4274d999f9
+4 -2
View File
@@ -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;