diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-23 20:00:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-24 21:08:16 +0300 |
commit | ea2e8f7410f7fc993a2dc65f865f013a68fad1fc (patch) | |
tree | b815fc43c271731f8bdd696dc762b953ff41c339 /src/gui/sdlfont.cpp | |
parent | d168ec33c553d1e331d1397d068fccdb70a594aa (diff) | |
download | plus-ea2e8f7410f7fc993a2dc65f865f013a68fad1fc.tar.gz plus-ea2e8f7410f7fc993a2dc65f865f013a68fad1fc.tar.bz2 plus-ea2e8f7410f7fc993a2dc65f865f013a68fad1fc.tar.xz plus-ea2e8f7410f7fc993a2dc65f865f013a68fad1fc.zip |
fix outlined text draw in SDL2.
Diffstat (limited to 'src/gui/sdlfont.cpp')
-rw-r--r-- | src/gui/sdlfont.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/sdlfont.cpp b/src/gui/sdlfont.cpp index b1e0092d7..e1a0cf832 100644 --- a/src/gui/sdlfont.cpp +++ b/src/gui/sdlfont.cpp @@ -138,7 +138,7 @@ void SDLTextChunk::generate(TTF_Font *const font, const float alpha) sdlCol.r = static_cast<uint8_t>(color.r); sdlCol.g = static_cast<uint8_t>(color.g); #ifdef USE_SDL2 - sdlCol.a = 0; + sdlCol.a = 255; #else sdlCol.unused = 0; #endif @@ -175,7 +175,7 @@ void SDLTextChunk::generate(TTF_Font *const font, const float alpha) sdlCol2.r = static_cast<uint8_t>(color2.r); sdlCol2.g = static_cast<uint8_t>(color2.g); #ifdef USE_SDL2 - sdlCol2.a = 0; + sdlCol2.a = 255; #else sdlCol2.unused = 0; #endif |