mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
oops, fixed ScummVM::Rect constructor (this fixes various string redraw bugs)
svn-id: r7868
This commit is contained in:
parent
0439e0fe58
commit
ad4eb36093
@ -53,7 +53,7 @@ struct Rect {
|
||||
|
||||
Rect() : top(0), left(0), bottom(0), right(0) {}
|
||||
Rect(int16 x, int16 y) : top(0), left(0), bottom(x), right(y) {}
|
||||
Rect(int16 x1, int16 y1, int16 x2, int16 y2) : top(x1), left(y1), bottom(x2), right(y2) {}
|
||||
Rect(int16 x1, int16 y1, int16 x2, int16 y2) : top(y1), left(x1), bottom(y2), right(x2) {}
|
||||
int16 width() const { return right - left; }
|
||||
int16 height() const { return bottom - top; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user