Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions emulators/ares.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ def setup(self):
shutil.copyfile(settings_source, "emu/ares/settings.bml")

def startProcess(self, rom, *, model, required_features):
if model == SGB:
return None
target = "emu/ares/ares-rom.gb"
self.cgb = model == CGB
if self.cgb:
Expand Down
2 changes: 1 addition & 1 deletion emulators/bgb.ini
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ BackgroundGBC=
SoundBufSize=57
SoundPages=4
SoundPagesAhead=3
Border=1
Border=0
Blend=0
Doubler=off
StartOpen=0
Expand Down
2 changes: 2 additions & 0 deletions emulators/nocash.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ def startProcess(self, rom, *, model, required_features):

def getScreenshot(self):
screenshot = getScreenshot(self.title_check)
if screenshot.size[0] == 256: # SGB
return screenshot.crop((48, 40, 48 + 160, 40 + 144))
return screenshot.crop((80, 34, 80 + 160, 34 + 144))
Binary file added testroms/cpp/sgb-ext-test.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added testroms/samesuite/sgb/command_mlt_req.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading