Skip to content

Commit

Permalink
WAGE: Fix hang up
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Dec 27, 2015
1 parent d9c61c1 commit 0c37ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/wage/design.cpp
Expand Up @@ -445,7 +445,7 @@ void Design::drawVLine(int x, int y1, int y2, int color, void (*plotProc)(int, i
if (y1 > y2)
SWAP(y1, y2);

for (int y = y1; y < y2; x++)
for (int y = y1; y < y2; y++)
(*plotProc)(x, y, color, data);
}

Expand Down

0 comments on commit 0c37ed2

Please sign in to comment.