diff --git a/src/f_finale.cpp b/src/f_finale.cpp index b0c806b67..c37d1f459 100644 --- a/src/f_finale.cpp +++ b/src/f_finale.cpp @@ -1322,15 +1322,15 @@ void F_Drawer (void) if (multiplayer) { screen->DrawTexture (TexMan["CHESSALL"], 20, 0, - DTA_VirtualWidth, w, - DTA_VirtualHeight, h, TAG_DONE); + DTA_VirtualWidthF, w, + DTA_VirtualHeightF, h, TAG_DONE); } else if (players[consoleplayer].CurrentPlayerClass > 0) { picname = players[consoleplayer].CurrentPlayerClass == 1 ? "CHESSC" : "CHESSM"; screen->DrawTexture (TexMan[picname], 60, 0, - DTA_VirtualWidth, w, - DTA_VirtualHeight, h, TAG_DONE); + DTA_VirtualWidthF, w, + DTA_VirtualHeightF, h, TAG_DONE); } } }