diff options
| -rw-r--r-- | sys/src/games/doom/i_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/games/doom/i_video.c b/sys/src/games/doom/i_video.c index 335faf1b9..098f58b2c 100644 --- a/sys/src/games/doom/i_video.c +++ b/sys/src/games/doom/i_video.c @@ -116,7 +116,7 @@ void I_FinishUpdate(void) Pt(scale*SCREENWIDTH/2, scale*SCREENHEIGHT/2)); /* the row image, y-axis gets scaled with repl flag */ - rowimg = allocimage(display, Rect(0, 0, scale*SCREENWIDTH, 1), RGB24, 1, DNofill); + rowimg = allocimage(display, Rect(0, 0, scale*SCREENWIDTH, 1), RGB24, scale > 1, DNofill); if(rowimg == nil) sysfatal("allocimage: %r"); |
