remove unnecessary return

This commit is contained in:
ipc 2023-08-13 17:12:42 +02:00
parent 94d2fb7499
commit 548fbd14d0
1 changed files with 1 additions and 1 deletions

View File

@ -409,6 +409,6 @@ impl Cpu {
self.pc += 4;
inst.execute(self);
return self.pc != 0;
self.pc != 0
}
}