summaryrefslogtreecommitdiff
path: root/Servers
diff options
context:
space:
mode:
Diffstat (limited to 'Servers')
-rw-r--r--Servers/WindowServer/WSAPITypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Servers/WindowServer/WSAPITypes.h b/Servers/WindowServer/WSAPITypes.h
index 071c138e81..09c956d85b 100644
--- a/Servers/WindowServer/WSAPITypes.h
+++ b/Servers/WindowServer/WSAPITypes.h
@@ -121,7 +121,7 @@ struct WSAPI_ServerMessage {
int rect_count;
};
- static const int max_inline_rect_count = 1;
+ static const int max_inline_rect_count = 32;
union {
char text[512];
WSAPI_Rect rects[32];
@@ -232,7 +232,7 @@ struct WSAPI_ClientMessage {
int rect_count;
};
- static const int max_inline_rect_count = 1;
+ static const int max_inline_rect_count = 32;
union {
char text[512];
WSAPI_Rect rects[max_inline_rect_count];