diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-18 19:36:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-18 19:36:16 +0300 |
commit | 3d94db98d119b011646893468bb61f88a0019173 (patch) | |
tree | a376ce45206ae5c13dbc963388cd12c262dd921d | |
parent | f21f28d566a2962a8e11a935102e4c90f037a181 (diff) | |
download | plus-3d94db98d119b011646893468bb61f88a0019173.tar.gz plus-3d94db98d119b011646893468bb61f88a0019173.tar.bz2 plus-3d94db98d119b011646893468bb61f88a0019173.tar.xz plus-3d94db98d119b011646893468bb61f88a0019173.zip |
fix compilation error.
-rw-r--r-- | src/sdlgraphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdlgraphics.cpp b/src/sdlgraphics.cpp index 54051a6de..db620d5fa 100644 --- a/src/sdlgraphics.cpp +++ b/src/sdlgraphics.cpp @@ -1038,7 +1038,7 @@ void SDLGraphics::drawVLine(int x, int y1, int y2) #if SDL_BYTEORDER == SDL_BIG_ENDIAN for (; y1 <= y2; ++y1) { - p[0] = b0 + p[0] = b0; p[1] = b1; p[2] = b2; p += pitch; |