From a8137bb4c1134c8d36d863d778177ead7eaada62 Mon Sep 17 00:00:00 2001 From: Chris Weber Date: Sat, 4 Mar 2023 17:24:00 +0100 Subject: [PATCH] increased max touches to 32 for ios (cherry picked from commit 54bd204377fb73a5871946005bd7cbbad4b91df9) --- platform/iphone/pandemonium_view.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/iphone/pandemonium_view.mm b/platform/iphone/pandemonium_view.mm index f6d1e3595..626c7b2af 100644 --- a/platform/iphone/pandemonium_view.mm +++ b/platform/iphone/pandemonium_view.mm @@ -42,7 +42,7 @@ #import -static const int max_touches = 8; +static const int max_touches = 32; @interface PandemoniumView () { UITouch *pandemonium_touches[max_touches];