Hi all. I have an intro splash video which plays in my game (just an MP4 file).
Anyway, the movie loads and plays just fine on both Android AND iOS devices, however, if I skip the video (see code below) it works fine on Android but freezes up the whole thing on iOS.
Can anyone see something horribly wrong with my code? It looks fine to me, but clearly isn't iOS friendly...
LoadVideo( "\media\Video\IntroLogo.mp4" )
SetVideoDimensions( 0, 0, GetScreenBoundsRight(), GetScreenBoundsBottom() )
PlayVideo()
while GetVideoPlaying() = 1
if (GetPointerPressed() = 1)
exit
endif
sync()
endwhile
DeleteVideo()