diff options
| author | Joost Peters | 2003-03-24 10:55:58 +0000 | 
|---|---|---|
| committer | Joost Peters | 2003-03-24 10:55:58 +0000 | 
| commit | 12c0a6834a4681981a0d0bbea3fbc38cec45924c (patch) | |
| tree | b9f3dadb155229c4ec267b2b504a4bbf296648fa /sky/sky.h | |
| parent | eb31490e3933a3b5e3a02dc836777403ff13e69f (diff) | |
| download | scummvm-rg350-12c0a6834a4681981a0d0bbea3fbc38cec45924c.tar.gz scummvm-rg350-12c0a6834a4681981a0d0bbea3fbc38cec45924c.tar.bz2 scummvm-rg350-12c0a6834a4681981a0d0bbea3fbc38cec45924c.zip | |
Some more cleanup, loadFile now returns a uint8*/byte* so no casting is needed anymore.
svn-id: r6854
Diffstat (limited to 'sky/sky.h')
| -rw-r--r-- | sky/sky.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -92,12 +92,12 @@ protected:  	void initialiseScreen();  	void initialiseGrids();  	void setPalette(uint8 *pal); -	void fn_fade_down(uint8 action); +	void fnFadeDown(uint8 action);  	void palette_fadedown_helper(uint32 *pal, uint num);  	void paletteFadeUp(uint8 *pal);  	void palette_fadeup_helper(uint32 *realPal, uint32 *desiredPal, int num); -	uint16 *loadFile(uint16 fileNr, uint8 *dest); -	uint16 *getFileInfo(uint16 fileNr); +	uint8 *loadFile(uint16 fileNr, uint8 *dest); +	uint8 *getFileInfo(uint16 fileNr);  	void dumpFile(uint16 fileNr);  	void initVirgin();  	void intro(); | 
