mirror of https://github.com/bsnes-emu/bsnes.git
Use NSThread instead of GDC when invoking run
This commit is contained in:
parent
64832e0e9e
commit
b99ed2676a
|
@ -118,9 +118,7 @@ static uint32_t rgbEncode(GB_gameboy_t *gb, unsigned char r, unsigned char g, un
|
||||||
- (void) start
|
- (void) start
|
||||||
{
|
{
|
||||||
if (running) return;
|
if (running) return;
|
||||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
[[[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil] start];
|
||||||
[self run];
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) stop
|
- (void) stop
|
||||||
|
|
Loading…
Reference in New Issue