void ST_NetProgress(void) { printf("*"); if (using_graphical_startup) { static int netnotchPosition = 0; if (netnotchPosition < ST_MAX_NETNOTCHES) { ST_UpdateNetNotches(netnotchPosition); S_StartSound(NULL, SFX_DRIP); netnotchPosition++; } } }
void ST_NetProgress(void) { #ifdef __WATCOMC__ static int netnotchPosition=0; if (debugmode) { printf("*"); } else { if(netnotchPosition<ST_MAX_NETNOTCHES) { ST_UpdateNetNotches(netnotchPosition); S_StartSound(NULL, SFX_DRIP); netnotchPosition++; } } #endif }