aboutsummaryrefslogtreecommitdiff
path: root/Source/Gfx.h
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2017-06-06 06:52:46 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2017-06-06 06:52:46 +0200
commit1244505327009142c80140e44c86138f4fd6ae07 (patch)
treed11878572385583e5e2fd3d05ae3349dd46d45e6 /Source/Gfx.h
parentc43347edb7d422b902360a44a7bd0b0a20f941f2 (diff)
downloadairport-1244505327009142c80140e44c86138f4fd6ae07.tar.gz
* Implemented aircraft collision. But it would not detect collision in some cases.
* Remove unneeded whitespace character on pointer variables (unary operators should not have any whitespaces). * SelectedAircraft index now increases or decreases automatically on aircraft added/removed. * Started writing Plt generation routines. Still a lot of work TODO.
Diffstat (limited to 'Source/Gfx.h')
-rw-r--r--Source/Gfx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Gfx.h b/Source/Gfx.h
index bbd041f..409c971 100644
--- a/Source/Gfx.h
+++ b/Source/Gfx.h
@@ -52,10 +52,10 @@ void GfxDrawScene_Fast(void);
bool GfxReadyForDMATransfer(void);
// Fills a GsSprite structure with information from a TIM file.
-bool GfxSpriteFromFile(char * fname, GsSprite * spr);
+bool GfxSpriteFromFile(char* fname, GsSprite * spr);
// Reportedly, loads CLUT data from a TIM image (image data is discarded)
-bool GfxCLUTFromFile(char * fname);
+bool GfxCLUTFromFile(char* fname);
// Returns true if current object is within screen limits, false otherwise.
bool GfxIsInsideScreenArea(short x, short y, short w, short h);