From e200734a6f1cd38228a8b3c0bbc07a5a27a2d7b0 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sun, 1 May 2011 13:41:50 -0500 Subject: [PATCH] another pedantic edit --- src/ScreenSelectMusic.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ScreenSelectMusic.cpp b/src/ScreenSelectMusic.cpp index 0c6c8987d6..a866cbfa91 100644 --- a/src/ScreenSelectMusic.cpp +++ b/src/ScreenSelectMusic.cpp @@ -1873,13 +1873,12 @@ void ScreenSelectMusic::OpenOptionsList(PlayerNumber pn) class LunaScreenSelectMusic: public Luna { public: - static int OpenOptionsList( T* p, lua_State *L ) { PlayerNumber pn = Enum::Check(L, 1); p->OpenOptionsList(pn); return 0; } - static int GetGoToOptions( T* p, lua_State *L ) { lua_pushboolean( L, p->GetGoToOptions() ); return 1; } static int GetMusicWheel( T* p, lua_State *L ) { p->GetMusicWheel()->PushSelf(L); return 1; } + static int OpenOptionsList( T* p, lua_State *L ) { PlayerNumber pn = Enum::Check(L, 1); p->OpenOptionsList(pn); return 0; } LunaScreenSelectMusic() {