Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed Jul 6, 2024
1 parent 809a6ce commit f6c5eca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 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.10
APP_TITLE := uxnds v0.5.0
ifeq ($(DEBUG),true)
APP_DESCRIPTION := tiny virtual machine (debug)
else
Expand Down
4 changes: 2 additions & 2 deletions Makefile.blocksds
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

NAME := uxnds

GAME_TITLE := uxnds v0.4.10
GAME_TITLE := uxnds v0.5.0
GAME_SUBTITLE := tiny virtual machine
GAME_AUTHOR := 30/04/2024
GAME_AUTHOR := 06/07/2024
GAME_ICON := misc/uxn32.png

#NAME := donsol
Expand Down
8 changes: 4 additions & 4 deletions source/3ds/ctr_screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,10 @@ Uint8
ctr_screen_dei(Uint8 *d, Uint8 addr)
{
switch(addr) {
case 0x22: return uxn_ctr_screen.width >> 8;
case 0x23: return uxn_ctr_screen.width;
case 0x24: return uxn_ctr_screen.height >> 8;
case 0x25: return uxn_ctr_screen.height;
case 0x2: return uxn_ctr_screen.width >> 8;
case 0x3: return uxn_ctr_screen.width;
case 0x4: return uxn_ctr_screen.height >> 8;
case 0x5: return uxn_ctr_screen.height;
default: return d[addr];
}
}
Expand Down
4 changes: 0 additions & 4 deletions source/3ds/emulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -529,10 +529,6 @@ main(int argc, char **argv)
return error("Load", "Failed");
}

// Write screen size to dev/screen
poke16(u.dev + 0x20, 2, PPU_PIXELS_WIDTH);
poke16(u.dev + 0x20, 4, PPU_PIXELS_HEIGHT);

start(&u);
quit();
return 0;
Expand Down

0 comments on commit f6c5eca

Please sign in to comment.