Changeset - r26763:326debd9f48c
[Not reviewed]
master
0 1 0
PeterN - 20 months ago 2023-01-14 22:39:15
peter1138@openttd.org
Change: Display font status as aa/noaa instead of true/false. (#10352)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/console_cmds.cpp
Show inline comments
 
@@ -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;
0 comments (0 inline, 0 general)