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.;