increased max touches to 32 for ios

(cherry picked from commit 54bd204377fb73a5871946005bd7cbbad4b91df9)
This commit is contained in:
Chris Weber 2023-03-04 17:24:00 +01:00 committed by Relintai
parent 67ebd5e52b
commit a8137bb4c1

View File

@ -42,7 +42,7 @@
#import <CoreMotion/CoreMotion.h>
static const int max_touches = 8;
static const int max_touches = 32;
@interface PandemoniumView () {
UITouch *pandemonium_touches[max_touches];