File tree Expand file tree Collapse file tree 3 files changed +147
-140
lines changed Expand file tree Collapse file tree 3 files changed +147
-140
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ loadText:
90
90
ld bc , textData6
91
91
ld hl , $ 9C00 + $ E0
92
92
call writeText
93
+ ld bc , betaText
94
+ ld hl , $ 9D61
95
+ call writeText
93
96
ld a , % 10011001
94
97
ld [ rLCDC ], a
95
98
ret
@@ -130,6 +133,10 @@ textData6:;artist
130
133
db " "
131
134
db 0
132
135
136
+ betaText:
137
+ db "PRE-RELEASE"
138
+ db 0
139
+
133
140
checkButtonInput:
134
141
call ReadJoy
135
142
ld a , [ NewJoyData ]
Original file line number Diff line number Diff line change 43
43
44
44
//Pull these from the .sym!!!
45
45
//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
48
48
49
49
struct VgmBuffer {//contains vgm info and file buffer for Deflemask generated GB Vgm
50
50
uint8_t * buffer ;
@@ -74,15 +74,15 @@ char* PATCHROM_PATH = "patchROM.gb";
74
74
int TMA_OFFSET = 0 ;//value to add to TMA for fine control
75
75
int LOOPVGMADDR = 0 ;//loop address in .vgm file 0 = no loop
76
76
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\
78
78
\nargs:\n\
79
79
- r < rate > set engine rate \n \
80
80
- o < outpath > set the output path \n \
81
81
- bin export as .bin file instead of patching .gb \n \
82
82
- ti < offset > increase tma offset timing (speed up song if using custom engine speed )\n \
83
83
- td < offset > decrease tma offset timing (slow down song if using custom engine speed )\n ";
84
84
85
-
85
+
86
86
//CODE
87
87
//===========================================================
88
88
You can’t perform that action at this time.
0 commit comments