diff options
-rw-r--r-- | dash.c | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1288,6 +1288,8 @@ static void XIntroLevel(void) (*Centre)("Press Space to continue",Y(SCRY-2),white); + USLEEP(10000); + (*Update)(); } @@ -2764,7 +2766,7 @@ static void DoXGameOverWonSmallScale(void) (*Centre)(gw_text[gw_text_no],Y(3),white); - if (++gw_text_ti==300) + if (++gw_text_ti==100) { gw_text_ti=0; if (++gw_text_no==NO_GW_LINES) @@ -2800,6 +2802,8 @@ static void DoXGameOverWonSmallScale(void) gw_cast_no=0; } + USLEEP(10000); + (*Update)(); } @@ -2865,6 +2869,8 @@ static void DoXGameOverWonLargeScale(void) gw_cast_no=0; } + USLEEP(10000); + (*Update)(); } @@ -2884,7 +2890,7 @@ static void XGameOverWon(void) if (chsz==8) { NO_GW_SPR=20; - gw_cast_inc=1; + gw_cast_inc=4; (*Show)(DoXGameOverWonSmallScale,False,False); } else |