Skip to content

Commit

Permalink
back to 64
Browse files Browse the repository at this point in the history
  • Loading branch information
tstirrat committed Jul 28, 2024
1 parent 875f0f2 commit 0d95051
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 $@ $<
Expand Down
6 changes: 3 additions & 3 deletions tests/bgb_get_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
]

Expand Down
2 changes: 1 addition & 1 deletion tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


subprocess.call([
"../bgb/bgb.exe",
"../bgb/bgb64.exe",
"-set \"DebugSrcBrk=1\"",
"-autoexit",
"-hf",
Expand Down

0 comments on commit 0d95051

Please sign in to comment.