diff options
| author | Eugene Sandulenko | 2015-12-18 19:47:27 +0100 | 
|---|---|---|
| committer | Eugene Sandulenko | 2015-12-27 15:40:54 +0100 | 
| commit | 0c37ed2c56dc30722d877e02b3e5f755e2d7f458 (patch) | |
| tree | 4a653419b5ce2e776c454c480424e8e81f82ecde | |
| parent | d9c61c16491d40180413eceb9be933ec0aaecfb6 (diff) | |
| download | scummvm-rg350-0c37ed2c56dc30722d877e02b3e5f755e2d7f458.tar.gz scummvm-rg350-0c37ed2c56dc30722d877e02b3e5f755e2d7f458.tar.bz2 scummvm-rg350-0c37ed2c56dc30722d877e02b3e5f755e2d7f458.zip | |
WAGE: Fix hang up
| -rw-r--r-- | engines/wage/design.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/wage/design.cpp b/engines/wage/design.cpp index e52b93c964..0a864385e3 100644 --- a/engines/wage/design.cpp +++ b/engines/wage/design.cpp @@ -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);  } | 
