summaryrefslogtreecommitdiff
path: root/src/sdlgraphics.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-08-18 19:36:16 +0300
committerAndrei Karas <akaras@inbox.ru>2013-08-18 19:36:16 +0300
commit3d94db98d119b011646893468bb61f88a0019173 (patch)
treea376ce45206ae5c13dbc963388cd12c262dd921d /src/sdlgraphics.cpp
parentf21f28d566a2962a8e11a935102e4c90f037a181 (diff)
downloadManaVerse-3d94db98d119b011646893468bb61f88a0019173.tar.gz
ManaVerse-3d94db98d119b011646893468bb61f88a0019173.tar.bz2
ManaVerse-3d94db98d119b011646893468bb61f88a0019173.tar.xz
ManaVerse-3d94db98d119b011646893468bb61f88a0019173.zip
fix compilation error.
Diffstat (limited to 'src/sdlgraphics.cpp')
-rw-r--r--src/sdlgraphics.cpp2
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;