diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index 599d73d30a..b91693a696 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -119,7 +119,7 @@ public: return 1; } - static void Register(lua_State *L) + static void Register( lua_State *L ) { ADD_METHOD( GetSong ); @@ -185,7 +185,7 @@ PlayMode Course::GetPlayMode() const case COURSE_TYPE_ONI: return PLAY_MODE_ONI; case COURSE_TYPE_SURVIVAL: return PLAY_MODE_ONI; case COURSE_TYPE_NONSTOP: return PLAY_MODE_NONSTOP; - default: ASSERT(0); return PLAY_MODE_INVALID; + default: ASSERT(0); return PLAY_MODE_INVALID; } }