diff options
Diffstat (limited to 'imagecache.h')
-rw-r--r-- | imagecache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/imagecache.h b/imagecache.h index 00ee007d..1cd03a58 100644 --- a/imagecache.h +++ b/imagecache.h @@ -15,13 +15,13 @@ private: std::string CacheName[MAX_IMAGE_CACHE]; int CacheWidth[MAX_IMAGE_CACHE]; int CacheHeight[MAX_IMAGE_CACHE]; - + int InsertIndex; bool Overflow; public: cImageCache(); ~cImageCache(); - + void Create(void); void Clear(void); @@ -29,6 +29,6 @@ public: cImage *GetImage(std::string Name, int Width, int Height); void InsertImage(cImage *Image, std::string Name, int Width, int Height); - + void PreLoadImage(void); }; |