Skip to content

Commit

Permalink
Remove bootrom clearing JIT
Browse files Browse the repository at this point in the history
  • Loading branch information
Baekalfen committed Oct 6, 2024
1 parent e12bf55 commit d50193d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pyboy/core/mb.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,9 +569,6 @@ def setitem(self, i, value):
if self.bootrom_enabled and i == 0xFF50 and (value == 0x1 or value == 0x11):
logger.debug("Bootrom disabled!")
self.bootrom_enabled = False
self.cpu.bail = True
if self.jit_enabled:
self.jit._jit_clear()
# CGB registers
elif self.cgb and i == 0xFF4D:
self.key1 = value
Expand Down

0 comments on commit d50193d

Please sign in to comment.