More effective fixes.

Course playing still results in it playing fine.
This commit is contained in:
Jason Felds
2011-03-19 18:26:55 -04:00
parent 3dcdf67666
commit 22b7b34897
19 changed files with 72 additions and 55 deletions
+2 -4
View File
@@ -1,15 +1,13 @@
/* RageTexturePreloader - Load textures in advance, for use later. */
#ifndef RAGE_TEXTURE_PRELOADER_H
#define RAGE_TEXTURE_PRELOADER_H
class RageTexture;
struct RageTextureID;
/** @brief Load the textures in advance for using them later. */
class RageTexturePreloader
{
public:
RageTexturePreloader() { }
RageTexturePreloader(): m_apTextures() { }
RageTexturePreloader( const RageTexturePreloader &cpy ) { *this = cpy; }
RageTexturePreloader &operator=( const RageTexturePreloader &rhs );
~RageTexturePreloader();