From fef6629d96f375b98ebb81382c0e8b4ee9b0f48b Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Fri, 29 Dec 2017 02:57:40 +0100 Subject: * 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. --- Source/LoadMenu.c | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) (limited to 'Source/LoadMenu.c') 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; } -- cgit v1.2.3