From 0053f1b6fa70c8aa34c4ddc8aa7dd6a79190a1e7 Mon Sep 17 00:00:00 2001 From: Dusan Stevanovic Date: Fri, 31 May 2024 12:15:03 +0200 Subject: [PATCH] iossim: disable video as opengl keeps crashing on ARM machines --- iosx/src/flowmgr/AVSVideoView.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iosx/src/flowmgr/AVSVideoView.m b/iosx/src/flowmgr/AVSVideoView.m index 941c011e2..1689c5c19 100644 --- a/iosx/src/flowmgr/AVSVideoView.m +++ b/iosx/src/flowmgr/AVSVideoView.m @@ -610,12 +610,14 @@ - (void)didMoveToWindow } } +#if !TARGET_IPHONE_SIMULATOR if (self.window) { [self startRunning]; } else { [self stopRunning]; } +#endif } - (void)applicationWillResignActive:(NSNotification *)notification