Skip to content

Commit

Permalink
try win32
Browse files Browse the repository at this point in the history
  • Loading branch information
tstirrat committed Jul 28, 2024
1 parent d959f61 commit 3ae92e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ mkdirs:
mkdir -p $(BLDDIR)

$(BGBDIR):
wget https://bgb.bircd.org/bgbw64.zip
unzip -jo -qq bgbw64.zip -d ../bgb
wget https://bgb.bircd.org/bgb.zip
unzip -jo -qq bgb.zip -d ../bgb
rm bgbw64.zip

$(BLDDIR)/%.gb: $(MYDIR)/%.c mkdirs $(BGBDIR)
Expand Down
4 changes: 2 additions & 2 deletions tests/bgb_get_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def load_rom_snapshot(rom_relative):


def make_and_run(rom_relative):
# make_rom(rom_relative)
make_rom(rom_relative)

rom_path_full = base_path.joinpath(rom_relative)
screenshot_path = rom_path_full.with_suffix('.bmp')
Expand All @@ -45,7 +45,7 @@ def make_and_run(rom_relative):

# windows
if os.name == 'nt':
bgb_exe = ["../bgb/bgb64.exe"]
bgb_exe = ["../bgb/bgb.exe"]

cmd = [
*bgb_exe,
Expand Down

0 comments on commit 3ae92e8

Please sign in to comment.