remove unnecessary return
This commit is contained in:
parent
94d2fb7499
commit
548fbd14d0
|
@ -409,6 +409,6 @@ impl Cpu {
|
|||
|
||||
self.pc += 4;
|
||||
inst.execute(self);
|
||||
return self.pc != 0;
|
||||
self.pc != 0
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue