Skip to content

Commit a2bcff3

Browse files
committed
added pre-release text
1 parent bcb44c9 commit a2bcff3

File tree

3 files changed

+147
-140
lines changed

3 files changed

+147
-140
lines changed

gbEngine/main.asm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ loadText:
9090
ld bc,textData6
9191
ld hl,$9C00 + $E0
9292
call writeText
93+
ld bc,betaText
94+
ld hl,$9D61
95+
call writeText
9396
ld a, %10011001
9497
ld [rLCDC], a
9598
ret
@@ -130,6 +133,10 @@ textData6:;artist
130133
db " "
131134
db 0
132135

136+
betaText:
137+
db "PRE-RELEASE"
138+
db 0
139+
133140
checkButtonInput:
134141
call ReadJoy
135142
ld a, [NewJoyData]

vgmConverter/main.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343

4444
//Pull these from the .sym!!!
4545
//These can change on reassm!!
46-
#define TITLE_PATCH_ADDRESS 0x0226 //textData5
47-
#define AUTHOR_PATCH_ADDRESS 0x023B //textData6
46+
#define TITLE_PATCH_ADDRESS 0x22F //textData5
47+
#define AUTHOR_PATCH_ADDRESS 0x0244 //textData6
4848

4949
struct VgmBuffer{//contains vgm info and file buffer for Deflemask generated GB Vgm
5050
uint8_t* buffer;
@@ -74,15 +74,15 @@ char* PATCHROM_PATH = "patchROM.gb";
7474
int TMA_OFFSET = 0;//value to add to TMA for fine control
7575
int LOOPVGMADDR = 0;//loop address in .vgm file 0 = no loop
7676

77-
char* HELPSTRING = "\nHelp:\n DeflemaskGBGMConverter <input vgm> [args...]\n\
77+
char* HELPSTRING = "\nversion 0.6 Pre-release\nHelp:\n DeflemaskGBGMConverter <input vgm> [args...]\n\
7878
\nargs:\n\
7979
-r <rate> set engine rate\n\
8080
-o <outpath> set the output path\n\
8181
-bin export as .bin file instead of patching .gb\n\
8282
-ti <offset> increase tma offset timing (speed up song if using custom engine speed)\n\
8383
-td <offset> decrease tma offset timing (slow down song if using custom engine speed)\n";
8484
85-
85+
8686
//CODE
8787
//===========================================================
8888

0 commit comments

Comments
 (0)