[vlc-commits] vout_ios2: compilation fix
Felix Paul Kühne
git at videolan.org
Mon Sep 30 11:02:43 CEST 2013
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Mon Sep 30 10:58:53 2013 +0200| [90de948ad5bb88ef8d6888e1ac63dbf746cabed7] | committer: Felix Paul Kühne
vout_ios2: compilation fix
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=90de948ad5bb88ef8d6888e1ac63dbf746cabed7
---
modules/video_output/ios2.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_output/ios2.m b/modules/video_output/ios2.m
index d963201..3656bfe 100644
--- a/modules/video_output/ios2.m
+++ b/modules/video_output/ios2.m
@@ -485,7 +485,7 @@ static void OpenglESSwap(vlc_gl_t *gl)
- (void)applicationStateChanged:(NSNotification *)notification
{
- if ([[notification name] isEqualToString:UIApplicationWillResignActiveNotification] || [[o_notification name] isEqualToString:UIApplicationDidEnterBackgroundNotification] || [[o_notification name] isEqualToString:UIApplicationWillTerminateNotification])
+ if ([[notification name] isEqualToString:UIApplicationWillResignActiveNotification] || [[notification name] isEqualToString:UIApplicationDidEnterBackgroundNotification] || [[notification name] isEqualToString:UIApplicationWillTerminateNotification])
_appActive = NO;
else
_appActive = YES;
More information about the vlc-commits
mailing list