mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 21:54:15 +00:00
Bugfix: Graphical glitch when drawing beveled squares (classic theme).
svn-id: r34611
This commit is contained in:
parent
46168618be
commit
4f511db2c1
@ -933,7 +933,7 @@ drawBevelSquareAlg(int x, int y, int w, int h, int bevel, PixelType top_color, P
|
||||
}
|
||||
|
||||
i = h - bevel;
|
||||
j = bevel;
|
||||
j = bevel - 1;
|
||||
ptr_left = (PixelType *)_activeSurface->getBasePtr(x + w - bevel, y);
|
||||
while (i--) {
|
||||
colorFill(ptr_left + j, ptr_left + bevel, bottom_color);
|
||||
|
Loading…
x
Reference in New Issue
Block a user