From 0d950514302df377d591f60893ed0c7aa6713c19 Mon Sep 17 00:00:00 2001 From: Tim Stirrat Date: Sun, 28 Jul 2024 16:31:29 +0200 Subject: [PATCH] back to 64 --- tests/Makefile | 6 +++--- tests/bgb_get_snapshot.py | 6 +++--- tests/test.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index f02f452..e9b1e2b 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -21,9 +21,9 @@ mkdirs: mkdir -p $(BLDDIR) $(BGBDIR): - wget https://bgb.bircd.org/bgb.zip - unzip -jo -qq bgb.zip -d ../bgb - rm bgb.zip + wget https://bgb.bircd.org/bgbw64.zip + unzip -jo -qq bgbw64.zip -d ../bgb + rm bgbw64.zip $(BLDDIR)/%.gb: $(MYDIR)/%.c mkdirs $(BGBDIR) $(CC) -o $@ $< diff --git a/tests/bgb_get_snapshot.py b/tests/bgb_get_snapshot.py index b680634..a89ea11 100644 --- a/tests/bgb_get_snapshot.py +++ b/tests/bgb_get_snapshot.py @@ -45,14 +45,14 @@ def make_and_run(rom_relative): # windows if os.name == 'nt': - bgb_exe = ["../bgb/bgb.exe"] + bgb_exe = ["../bgb/bgb64.exe"] cmd = [ *bgb_exe, - "-autoexit", + "-autoexit" "-hf", "-stateonexit", - # "-screenonexit", screenshot_path.absolute().as_posix(), + "-screenonexit", screenshot_path.absolute().as_posix(), rom_relative, ] diff --git a/tests/test.py b/tests/test.py index 8552f56..8b918c8 100644 --- a/tests/test.py +++ b/tests/test.py @@ -2,7 +2,7 @@ subprocess.call([ - "../bgb/bgb.exe", + "../bgb/bgb64.exe", "-set \"DebugSrcBrk=1\"", "-autoexit", "-hf",