Skip to content

Commit

Permalink
Change version to Alpha v0.1.0, add a space before game titles.
Browse files Browse the repository at this point in the history
  • Loading branch information
calc84maniac committed Jun 19, 2018
1 parent c670e76 commit 991bb74
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions menu.asm
Original file line number Diff line number Diff line change
Expand Up @@ -724,9 +724,9 @@ ItemSelectCallbacks:
MainMenu:
.db 9
.db 5,8
.db 5,9
EmulatorTitle:
.db "TI-Boy CE Private Alpha 1",0
.db "TI-Boy CE Alpha v0.1.0",0
.db "Select to set appearance and\n frameskip behavior.",0
.db ITEM_LINK,1, 50,1,"Graphics Options",0
.db "Select to load the game state from the\n current slot for this game.\n Press left/right to change the slot.",0
Expand Down
8 changes: 5 additions & 3 deletions setup.asm
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ RedrawMenuClear:
ACALL(RestoreHomeScreen)
ld a,32
ld (penRow),a
ld hl,74
ld hl,85
ld (penCol),hl
ld hl,$0031
ld.sis (drawFGColor-ramStart),hl
Expand Down Expand Up @@ -1953,16 +1953,18 @@ DrawMenuItem:
ld de,9
add hl,de
ld b,(hl)
inc b
ld a,' '
DrawMenuItemLoop:
call _VPutMap
ret c
inc hl
ld a,(hl)
; Handle TI-ASCII annoyances
cp '['
jr nz,_
ld a,LlBrack
_
call _VPutMap
ret c
djnz DrawMenuItemLoop
ret
Expand Down

0 comments on commit 991bb74

Please sign in to comment.