Revert nil check changes.

This commit is contained in:
Jeff Verkoeyen 2021-01-15 12:49:24 -05:00
parent 60f226321d
commit 8f91533a9a
1 changed files with 2 additions and 2 deletions

View File

@ -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