From 41d71180996baec05d257219aba8d8c3aa7179f2 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Tue, 21 Feb 2023 10:30:44 +0200 Subject: [PATCH] - fixed compilation error source\core\razefont.cpp(60,3): error C2181: illegal else without matching if --- source/core/razefont.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/source/core/razefont.cpp b/source/core/razefont.cpp index 44c752b4b..cc873cc18 100644 --- a/source/core/razefont.cpp +++ b/source/core/razefont.cpp @@ -54,12 +54,9 @@ CUSTOM_CVAR(Int, duke_menufont, -1, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOIN { if (!(g_gameType & GAMEFLAG_DUKE) || !BigFont13 || !BigFont15) return; if (self < -1 || self > 1) self = -1; - else - { - // Font info must be copied so that BigFont does not change its address. - else if (self == 0 || (self == -1 && isPlutoPak())) OriginalBigFont->CopyFrom(*BigFont15); - else if (self == 1 || (self == -1 && !isPlutoPak())) OriginalBigFont->CopyFrom(*BigFont13); - } + // Font info must be copied so that BigFont does not change its address. + else if (self == 0 || (self == -1 && isPlutoPak())) OriginalBigFont->CopyFrom(*BigFont15); + else if (self == 1 || (self == -1 && !isPlutoPak())) OriginalBigFont->CopyFrom(*BigFont13); } #if 0