Skip to content

Commit

Permalink
0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andwn committed Mar 13, 2019
1 parent 24e1133 commit c60bf49
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions boot.s
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ RomStart:

RomHeader:
.ascii "SEGA MEGA DRIVE "
.ascii "GRIND 2018.APR"
.ascii "GRIND 2019.MAR"
.ascii "Doukutsu Monogatari MD "
.ascii "Cave Story MD "
.ascii "GM ANDYG002-A6"
.ascii "GM ANDYG002-A5"
dc.w 0
.ascii "J "
dc.l 0x000000
Expand Down
1 change: 1 addition & 0 deletions inc/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"move.l (0),%a7\n\t" \
"jmp _hard_reset")

// bool and stdint types
#define FALSE 0
#define TRUE 1
#define NULL 0
Expand Down
2 changes: 1 addition & 1 deletion src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const MenuItem menu[NUM_PAGES][MAX_OPTIONS] = {
{ 23, 19, BKI, MI_ACTION, "Apply", (uint8_t*)1 },
{ 25, 20, BKI+40, MI_ACTION, "Reset to Default", (uint8_t*)0 },
},{
//{ 4, 9, AKI, MI_LANG, "Language", &cfg_language },
{ 4, 9, AKI, MI_LANG, "Language", &cfg_language },
{ 7, 10, AKI+60, MI_TOGGLE, "Enable Fast Forward", &cfg_ffwd },
{ 9, 11, AKI+120,MI_TOGGLE, "Use Up to Interact", &cfg_updoor },
{ 11, 12, AKI+180,MI_TOGGLE, "Screen Shake in Hell", &cfg_hellquake },
Expand Down
2 changes: 1 addition & 1 deletion src/titlescreen.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ uint8_t titlescreen_main() {
vdp_puts(VDP_PLAN_A, vstr, 4, 26);
}
// Release
//vdp_puts("Mega Drive Version 0.5.1a 2018.03", 4, 26);
//vdp_puts(VDP_PLAN_A, "Mega Drive Version 0.5.2 2019.03", 4, 26);
vdp_tiles_load_from_rom(cfg_language ? TS_J_Title.tiles : TS_Title.tiles, TILE_USERINDEX, TS_Title.numTile);
vdp_map_fill_rect(VDP_PLAN_B, TILE_ATTR(PAL0,0,0,0,TILE_USERINDEX), 11, 3, 18, 4, 1);
vdp_map_fill_rect(VDP_PLAN_B, TILE_ATTR(PAL0,0,0,0,TILE_USERINDEX + 18*4), 11, 23, 18, 2, 1);
Expand Down

0 comments on commit c60bf49

Please sign in to comment.