mirror of https://github.com/bsnes-emu/bsnes.git
Revert nil check changes.
This commit is contained in:
parent
60f226321d
commit
8f91533a9a
|
@ -434,7 +434,7 @@ static unsigned *multiplication_table_for_frequency(unsigned frequency)
|
|||
|
||||
- (void) run
|
||||
{
|
||||
assert(master == nil);
|
||||
assert(!master);
|
||||
running = true;
|
||||
[self preRun];
|
||||
if (slave) {
|
||||
|
@ -2029,7 +2029,7 @@ static unsigned *multiplication_table_for_frequency(unsigned frequency)
|
|||
|
||||
- (bool)isSlave
|
||||
{
|
||||
return master != nil;
|
||||
return master;
|
||||
}
|
||||
|
||||
- (GB_gameboy_t *)gb
|
||||
|
|
Loading…
Reference in New Issue