From 0aa7e6e5e2a78917013227971ed6893f6820a3ab Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 5 May 2007 11:11:23 +0000 Subject: [PATCH] Removed uses of TEXTUREMAN inside TextureManager member functions. --- stepmania/src/RageTextureManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageTextureManager.cpp b/stepmania/src/RageTextureManager.cpp index 0483d4a447..d103ec4f39 100644 --- a/stepmania/src/RageTextureManager.cpp +++ b/stepmania/src/RageTextureManager.cpp @@ -272,7 +272,7 @@ void RageTextureManager::GarbageCollect( GCType type ) void RageTextureManager::ReloadAll() { - TEXTUREMAN->DisableOddDimensionWarning(); + DisableOddDimensionWarning(); /* Let's get rid of all unreferenced textures, so we don't reload a * ton of cached data that we're not necessarily going to use. */ @@ -283,7 +283,7 @@ void RageTextureManager::ReloadAll() i->second->Reload(); } - TEXTUREMAN->EnableOddDimensionWarning(); + EnableOddDimensionWarning(); } /* In some cases, changing the display mode will reset the rendering context,