From b4f0450974a91649b6b72b820c8b8079937dfe23 Mon Sep 17 00:00:00 2001 From: PeterN Date: Sat, 14 Jan 2023 22:39:15 +0000 Subject: [PATCH] Change: Display font status as aa/noaa instead of true/false. (#10352) --- src/console_cmds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 65343aba5d..22e3225a01 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -2054,7 +2054,7 @@ DEF_CONSOLE_CMD(ConFont) InitFontCache(fs == FS_MONO); fc = FontCache::Get(fs); } - IConsolePrint(CC_DEFAULT, "{}: \"{}\" {} {} [\"{}\" {} {}]", FontSizeToName(fs), fc->GetFontName(), fc->GetFontSize(), GetFontAAState(fs), setting->font, setting->size, setting->aa); + IConsolePrint(CC_DEFAULT, "{}: \"{}\" {} {} [\"{}\" {} {}]", FontSizeToName(fs), fc->GetFontName(), fc->GetFontSize(), GetFontAAState(fs) ? "aa" : "noaa", setting->font, setting->size, setting->aa ? "aa" : "noaa"); } return true;