void ST_Progress(void) { #ifdef __WATCOMC__ static int notchPosition=0; // Check for ESC press -- during startup all events eaten here I_StartupReadKeys(); if (debugmode) { printf("."); } else { if(notchPosition<ST_MAX_NOTCHES) { ST_UpdateNotches(notchPosition); S_StartSound(NULL, SFX_STARTUP_TICK); notchPosition++; } } #else printf("."); #endif }
void ST_Progress(void) { // haleyjd FIXME: any way to get input here? SDL event loop? #ifdef __WATCOMC__ // Check for ESC press -- during startup all events eaten here I_StartupReadKeys(); #endif if (using_graphical_startup) { static int notchPosition = 0; if (notchPosition < ST_MAX_NOTCHES) { ST_UpdateNotches(notchPosition); S_StartSound(NULL, SFX_STARTUP_TICK); //I_Sleep(1000); notchPosition++; } } printf("."); }