When I use Siri
on the Cocos2d 3.4.9
framework always make crash.
Following the crash of the stack.
What's make crash reason?
I find a article aboute the problem.
The problem was Siri knocked out GL context that is why everthing crashed. and this fix will appear in 3.5. but if you want to do yourself right now. simply replace beginFrame
method in CCGLView.m
with this one line
-(void)beginFrame { [EAGLContext setCurrentContext:self.context]; }