diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-04 04:04:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-04 04:04:49 +0300 |
commit | 872fc368f7b253f26714fc47323064f270b62b40 (patch) | |
tree | 4d3248fd79e9aebf05cbfd3dc2a153023c6934d7 | |
parent | 866a71ffd576fd10c4e309195016d86f0c8ed635 (diff) | |
download | plus-872fc368f7b253f26714fc47323064f270b62b40.tar.gz plus-872fc368f7b253f26714fc47323064f270b62b40.tar.bz2 plus-872fc368f7b253f26714fc47323064f270b62b40.tar.xz plus-872fc368f7b253f26714fc47323064f270b62b40.zip |
Fix horisontal lines draw in internal guichan.
-rw-r--r-- | src/guichan/sdl/sdlgraphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guichan/sdl/sdlgraphics.cpp b/src/guichan/sdl/sdlgraphics.cpp index c3afddb74..e6da83535 100644 --- a/src/guichan/sdl/sdlgraphics.cpp +++ b/src/guichan/sdl/sdlgraphics.cpp @@ -267,7 +267,7 @@ namespace gcn } else { - *(q++) = static_cast<uint8_t>(pixel); + *(q++) = pixel; } } break; |