Don't disable UIKit event pump ever

Disabling UIKit event pump prevents the app from receiving general app notifications. See: 45fc548562/src/video/uikit/SDL_uikitevents.m (L52-L66)
This commit is contained in:
Salman Alshamrani
2024-12-11 03:28:31 -05:00
parent 3134295ba6
commit 3ef7542399

View File

@@ -62,8 +62,6 @@ namespace osu.Framework.iOS
// iOS may be a good forward direction if this ever comes up, as a user may see a potentially higher
// frame rate with multi-threaded mode turned on, but it is going to give them worse input latency
// and higher power usage.
SDL_SetiOSEventPump(false);
SDL_SetiOSAnimationCallback(SDLWindowHandle, 1, &runFrame, ObjectHandle.Handle);
}