From aa13b505044c967fde660e273dbd637f711330df Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sun, 11 Jul 2021 12:38:42 +1000 Subject: [PATCH] - Use `isRR()` in more places. --- source/core/menu/razemenu.cpp | 2 +- source/core/statusbar2.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/menu/razemenu.cpp b/source/core/menu/razemenu.cpp index fddf91269..38e57bb0b 100644 --- a/source/core/menu/razemenu.cpp +++ b/source/core/menu/razemenu.cpp @@ -628,7 +628,7 @@ void SetDefaultMenuColors() OptionSettings.mFontColorSelection = CR_DARKGREEN; gameinfo.mSliderColor = "Green"; } - else if (g_gameType & GAMEFLAG_RRALL) + else if (isRR()) { OptionSettings.mFontColor = CR_BROWN; OptionSettings.mFontColorHeader = CR_DARKBROWN; diff --git a/source/core/statusbar2.cpp b/source/core/statusbar2.cpp index 870f21dba..c9c3f155c 100644 --- a/source/core/statusbar2.cpp +++ b/source/core/statusbar2.cpp @@ -166,7 +166,7 @@ void drawMapTitle() double alpha = levelTextTime > 16? 1.0 : levelTextTime / 16.; if (alpha > 0) { - double scale = (g_gameType & GAMEFLAG_RRALL)? 0.4 : isSWALL()? 0.7 : 1.0; + double scale = isRR()? 0.4 : isSWALL()? 0.7 : 1.0; auto text = currentLevel->DisplayName(); auto myfont = PickBigFont(text); double x = 160 - myfont->StringWidth(text) * scale / 2.;