From 9449321944fbf7b3c1f7a4736b5bf2b3a32e3367 Mon Sep 17 00:00:00 2001 From: toaster Date: Sat, 30 Aug 2025 23:32:13 +0100 Subject: [PATCH] Oni's suggestion for fixing EXP/Mobiums on Roundqueue Intermission (resolves #1647) --- src/y_inter.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/y_inter.cpp b/src/y_inter.cpp index 3ed2b82fc..dd9ded9dd 100644 --- a/src/y_inter.cpp +++ b/src/y_inter.cpp @@ -958,9 +958,13 @@ void Y_PlayerStandingsDrawer(y_data_t *standings, INT32 xoffset) if (standings->rankingsmode) { - if (standings->isduel) + if (standings->numplayers < 2) + ; + else if (standings->isduel) { - Y_DrawRankMode(BASEVIDWIDTH / 2 + xoffset, BASEVIDHEIGHT - 19, true); + x = BASEVIDWIDTH / 2 + xoffset; + y = roundqueue.size ? (BASEVIDHEIGHT/2) : (BASEVIDHEIGHT - 19); + Y_DrawRankMode(x, y, true); } else {