src/spritecache.h
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 5838 9c3129cb019b
child 6307 f40e88cff863
--- a/src/spritecache.h	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/spritecache.h	Mon Mar 19 12:38:16 2007 +0000
@@ -3,14 +3,14 @@
 #ifndef SPRITECACHE_H
 #define SPRITECACHE_H
 
-typedef struct Sprite {
+struct Sprite {
 	byte info;
 	byte height;
 	uint16 width;
 	int16 x_offs;
 	int16 y_offs;
 	byte data[VARARRAY_SIZE];
-} Sprite;
+};
 
 const void *GetRawSprite(SpriteID sprite);
 bool SpriteExists(SpriteID sprite);
@@ -25,8 +25,8 @@
 	return (byte*)GetRawSprite(sprite);
 }
 
-void GfxInitSpriteMem(void);
-void IncreaseSpriteLRU(void);
+void GfxInitSpriteMem();
+void IncreaseSpriteLRU();
 
 bool LoadNextSprite(int load_index, byte file_index);
 void DupSprite(SpriteID old_spr, SpriteID new_spr);