diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2017-12-29 02:57:40 +0100 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2017-12-29 02:57:40 +0100 |
| commit | fef6629d96f375b98ebb81382c0e8b4ee9b0f48b (patch) | |
| tree | 5f13bb4540d110110cb63303b10e658002856f11 /Source/LoadMenu.c | |
| parent | eb6f4d6d8cc6d895c7c6185b20eb93da1fdd8b3b (diff) | |
| download | airport-fef6629d96f375b98ebb81382c0e8b4ee9b0f48b.tar.gz | |
* New LEVEL2.LVL was not being displayed correctly as I forgot to include the new tiles on Game.c.
* Some work done on runway exit detection, but still TODO.
* Minor change in LoadMenu.c.
Diffstat (limited to 'Source/LoadMenu.c')
| -rw-r--r-- | Source/LoadMenu.c | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/Source/LoadMenu.c b/Source/LoadMenu.c index 246edc3..d0d5fc5 100644 --- a/Source/LoadMenu.c +++ b/Source/LoadMenu.c @@ -262,21 +262,12 @@ void ISR_LoadMenuVBlank(void) SystemIncreaseGlobalTimer(); - if (SystemIsBusy() != false) + if ( (SystemIsBusy() != false) + || + (GfxIsGPUBusy() != false) + || + (SerialIsBusy() != false) ) { - dprintf("SystemIsBusy...\n"); - return; - } - - if ((GfxIsGPUBusy() != false)) - { - dprintf("(GfxIsGPUBusy() != false)\n"); - return; - } - - if (SerialIsBusy() != false) - { - dprintf("Serialisbusy\n"); return; } |
