mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
MACGUI: Fix compilation
This commit is contained in:
parent
3a2ce12288
commit
49c72c884a
@ -29,8 +29,13 @@
|
||||
namespace Graphics {
|
||||
|
||||
struct SelectedText {
|
||||
int startX = 0, startY = 0;
|
||||
int endX = 0, endY = 0;
|
||||
int startX, startY;
|
||||
int endX, endY;
|
||||
|
||||
SelectedText() {
|
||||
startX = startY = 0;
|
||||
endX = endY = 0;
|
||||
}
|
||||
|
||||
bool needsRender() {
|
||||
return startX != endX || startY != endY;
|
||||
|
Loading…
Reference in New Issue
Block a user