diff options
Diffstat (limited to 'src/render/Font.h')
-rw-r--r-- | src/render/Font.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/Font.h b/src/render/Font.h index 8e7ae16a..5218e426 100644 --- a/src/render/Font.h +++ b/src/render/Font.h @@ -154,9 +154,9 @@ public: static void SetRightJustifyWrap(float wrap) { Details.rightJustifyWrap = wrap; } static void SetAlphaFade(float fade) { Details.alphaFade = fade; } static void SetDropShadowPosition(int16 pos) { Details.dropShadowPosition = pos; } - static void SetBackgroundColor(CRGBA col); - static void SetColor(CRGBA col); - static void SetDropColor(CRGBA col); + static void SetBackgroundColor(const CRGBA &col); + static void SetColor(const CRGBA &col); + static void SetDropColor(const CRGBA &col); #ifdef MORE_LANGUAGES static void ReloadFonts(uint8 set); |