From 914182ffe3a8869d0204bbd6a2ffe1482e510f89 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/godot_view.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/iphone/godot_view.mm b/platform/iphone/godot_view.mm index f6041e7d208..0f7fb8cd6af 100644 --- a/platform/iphone/godot_view.mm +++ b/platform/iphone/godot_view.mm @@ -42,7 +42,7 @@ #import -static const int max_touches = 8; +static const int max_touches = 32; @interface GodotView () { UITouch *godot_touches[max_touches];