MACGUI: Fix compilation

This commit is contained in:
Eugene Sandulenko 2017-07-18 00:01:46 +02:00
parent 3a2ce12288
commit 49c72c884a

View File

@ -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;