diff --git a/stepmania/src/LuaManager.cpp b/stepmania/src/LuaManager.cpp index 37c44ba9fc..020e4225c3 100644 --- a/stepmania/src/LuaManager.cpp +++ b/stepmania/src/LuaManager.cpp @@ -65,22 +65,6 @@ void LuaManager::SetGlobal( const RString &sName, int val ) LUA->Release( L ); } -void LuaManager::SetGlobal( const RString &sName, float val ) -{ - Lua *L = LUA->Get(); - LuaHelpers::Push( val, L ); - lua_setglobal( L, sName ); - LUA->Release( L ); -} - -void LuaManager::SetGlobal( const RString &sName, bool val ) -{ - Lua *L = LUA->Get(); - LuaHelpers::Push( val, L ); - lua_setglobal( L, sName ); - LUA->Release( L ); -} - void LuaManager::SetGlobal( const RString &sName, const RString &val ) { Lua *L = LUA->Get(); diff --git a/stepmania/src/LuaManager.h b/stepmania/src/LuaManager.h index cb1e3b175b..cfdec57c0f 100644 --- a/stepmania/src/LuaManager.h +++ b/stepmania/src/LuaManager.h @@ -33,8 +33,6 @@ public: void RegisterTypes(); void SetGlobal( const RString &sName, int val ); - void SetGlobal( const RString &sName, float val ); - void SetGlobal( const RString &sName, bool val ); void SetGlobal( const RString &sName, const RString &val ); void UnsetGlobal( const RString &sName ); XNode *GetLuaInformation() const;