From 3673781c1b880a90b01ac08093c019af58f825cf Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 22 Feb 2005 23:34:18 +0000 Subject: [PATCH] fix compile error --- stepmania/src/GameState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index 277d30966d..2402539f5b 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -1900,7 +1900,7 @@ public: static int SetCurrentCourse( T* p, lua_State *L ) { if( lua_isnil(L,1) ) { p->m_pCurCourse = NULL; } - else { Song *pC = Luna::check(L,1); p->m_pCurCourse = pC; } + else { Course *pC = Luna::check(L,1); p->m_pCurCourse = pC; } return 0; } static int SetTemporaryEventMode( T* p, lua_State *L ) { p->m_bTemporaryEventMode = BArg(1); return 0; }