Skip to content

Commit

Permalink
uxnds 0.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed Dec 16, 2023
1 parent d8c67c2 commit 3a91447
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.3ds
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ INCLUDES := include source
GRAPHICS := assets/3ds
ROMFS := romfs/3ds
GFXBUILD := $(ROMFS)
APP_TITLE := uxnds v0.4.8
APP_TITLE := uxnds v0.4.9
ifeq ($(DEBUG),true)
APP_DESCRIPTION := tiny virtual machine (debug)
else
Expand Down
2 changes: 1 addition & 1 deletion Makefile.blocksds
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

NAME := uxnds

GAME_TITLE := uxnds v0.4.8
GAME_TITLE := uxnds v0.4.9
GAME_SUBTITLE := tiny virtual machine
GAME_AUTHOR := 16/12/2023
GAME_ICON := misc/uxn32.png
Expand Down
4 changes: 4 additions & 0 deletions arm9/source/emulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,10 @@ uxn_load_boot(Uxn *u)
chdir("./uxn");
return 1;
}
if(system_load(u, "./uxn/launcher.rom")) {
chdir("/uxn");
return 1;
}
if(system_load(u, "/uxn/boot.rom")) {
chdir("/uxn");
return 1;
Expand Down
4 changes: 4 additions & 0 deletions source/3ds/emulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,10 @@ uxn_load_boot(Uxn *u)
chdir("./uxn");
return 1;
}
if(system_load(u, "./uxn/launcher.rom")) {
chdir("./uxn");
return 1;
}
if(system_load(u, "/uxn/boot.rom")) {
chdir("/uxn");
return 1;
Expand Down

0 comments on commit 3a91447

Please sign in to comment.