1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Cosmetics

This commit is contained in:
Mathieu Schroeter 2022-10-22 22:14:41 +02:00
parent b09ff326d1
commit 041f413d4b
No known key found for this signature in database
GPG Key ID: 8B9145A5FA9DA8A8

View File

@ -583,7 +583,7 @@ DrawTextLegacy (
{
if (isRightReading && numberSize == 0)
{
const auto test = [](const char * text) -> bool {
const auto test = [] (const char * text) -> bool {
return *text > ' ' && *text <= '~';
};
it = pText;
@ -668,7 +668,7 @@ DrawText (
CPixmap * pPixmap, Point pos, const char * pText, Sint32 font, Sint32 slope)
{
if (g_settingsOverload & SETTING_LEGACY)
DrawTextLegacy(pPixmap, pos, pText, font, slope);
DrawTextLegacy (pPixmap, pos, pText, font, slope);
else
GetFonts ()->Draw (pPixmap, font, pos, pText, slope);
}