Skip to content

Commit 812b51b

Browse files
No compile warnings on RGBDS 0.4.1
1 parent a33cb0e commit 812b51b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

color/trade.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Trade_LoadCablePalettes:
2424
; Called just before loading the pokemon sprites for moving through the link cable.
2525
; This function sort of "patches" the result of "LoadAnimationTileset", so it should be
2626
; called after any such animations occur.
27-
Trade_InitGameboyTransferGfx_ColorHook
27+
Trade_InitGameboyTransferGfx_ColorHook:
2828
call Trade_LoadCablePalettes
2929

3030
ld a,2

color/update_hp_bar.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
; d: length of bar (tiles)
55
; e: # pixels to fill
66
; hl: where to draw
7-
DrawHPBarWithColor
7+
DrawHPBarWithColor:
88
call DrawHPBar
99
push bc
1010
push de

crysaudio/engine.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1702,7 +1702,7 @@ MusicFB: ; e8817
17021702
ret
17031703
; e883e
17041704

1705-
MusicEE; e883e
1705+
MusicEE:; e883e
17061706
; conditional jump
17071707
; checks a byte in ram corresponding to the current channel
17081708
; doesn't seem to be set by any commands

home/audio.asm

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ PlaySFX::
260260
;cp e
261261
;jr c, .quit
262262

263-
PlaySFX_play
263+
PlaySFX_play:
264264
.play
265265
ld a, [hROMBank]
266266
push af
@@ -285,7 +285,7 @@ PopAllRet:
285285

286286
_LoadMusicByte::
287287
; CurMusicByte = [a:de]
288-
GLOBAL LoadMusicByte
288+
EXPORT LoadMusicByte
289289

290290
ld [hROMBank], a
291291
ld [MBC1RomBank], a

scripts/CeladonMart3.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ CeladonMart3Text5:
7474
TX_FAR _CeladonMart3Text5
7575
db "@"
7676

77-
CeladonMart3Text12
77+
CeladonMart3Text12:
7878
CeladonMart3Text10:
7979
CeladonMart3Text8:
8080
CeladonMart3Text6:

0 commit comments

Comments
 (0)