summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/f_finale.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/f_finale.c')
-rw-r--r--apps/plugins/doom/f_finale.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/doom/f_finale.c b/apps/plugins/doom/f_finale.c
index 4deb3df689..3af27d2785 100644
--- a/apps/plugins/doom/f_finale.c
+++ b/apps/plugins/doom/f_finale.c
@@ -304,7 +304,7 @@ void F_TextWrite (void)
304 } 304 }
305 305
306 w = SHORT (hu_font[c].width); 306 w = SHORT (hu_font[c].width);
307 if (cx+w > SCREENWIDTH) 307 if (cx+w > 320)
308 break; 308 break;
309 // CPhipps - patch drawing updated 309 // CPhipps - patch drawing updated
310 V_DrawNumPatch(cx, cy, 0, hu_font[c].lumpnum, CR_DEFAULT, VPT_STRETCH); 310 V_DrawNumPatch(cx, cy, 0, hu_font[c].lumpnum, CR_DEFAULT, VPT_STRETCH);
@@ -638,7 +638,7 @@ static void F_BunnyScroll (void)
638 laststage = stage; 638 laststage = stage;
639 } 639 }
640 640
641 snprintf (name,sizeof(name), "END%i",stage); 641 snprintf (name,sizeof(name), "END%d",stage);
642 // CPhipps - patch drawing updated 642 // CPhipps - patch drawing updated
643 V_DrawNamePatch((320-13*8)/2, (200-8*8)/2, 0, name, CR_DEFAULT, VPT_STRETCH); 643 V_DrawNamePatch((320-13*8)/2, (200-8*8)/2, 0, name, CR_DEFAULT, VPT_STRETCH);
644} 644}