|
@@ -60,6 +60,11 @@ namespace oxygine
|
|
|
alcSuspendContext(_context);
|
|
alcSuspendContext(_context);
|
|
|
alcMakeContextCurrent(0);
|
|
alcMakeContextCurrent(0);
|
|
|
#endif
|
|
#endif
|
|
|
|
|
+
|
|
|
|
|
+#if TARGET_OS_IPHONE
|
|
|
|
|
+ alcSuspendContext(_context);
|
|
|
|
|
+ alcMakeContextCurrent(0);
|
|
|
|
|
+#endif
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void SoundSystemOAL::resume()
|
|
void SoundSystemOAL::resume()
|
|
@@ -75,6 +80,10 @@ namespace oxygine
|
|
|
alcProcessContext(_context);
|
|
alcProcessContext(_context);
|
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
|
|
+#if TARGET_OS_IPHONE
|
|
|
|
|
+ alcMakeContextCurrent(_context);
|
|
|
|
|
+ alcProcessContext(_context);
|
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
/*
|