mirror of https://github.com/pret/pokecrystal.git
Fix macro definitiosn for unused commands
This commit is contained in:
parent
354fefaefb
commit
8c6242a152
|
@ -1398,9 +1398,9 @@ MusicCommands:
|
|||
dw Music_PitchOffset
|
||||
dw MusicE7 ; unused
|
||||
dw MusicE8 ; unused
|
||||
dw Music_TempoRelative
|
||||
dw Music_TempoRelative ; unused
|
||||
dw Music_RestartChannel
|
||||
dw Music_NewSong
|
||||
dw Music_NewSong ; unused
|
||||
dw Music_SFXPriorityOn
|
||||
dw Music_SFXPriorityOff
|
||||
dw MusicEE ; unused
|
||||
|
|
|
@ -192,7 +192,7 @@ ENDM
|
|||
const tempo_relative_cmd ; $e9
|
||||
MACRO tempo_relative
|
||||
db tempo_relative_cmd
|
||||
bigdw \1 ; tempo adjustment
|
||||
db \1 ; tempo adjustment
|
||||
ENDM
|
||||
|
||||
const restart_channel_cmd ; $ea
|
||||
|
@ -204,7 +204,7 @@ ENDM
|
|||
const new_song_cmd ; $eb
|
||||
MACRO new_song
|
||||
db new_song_cmd
|
||||
bigdw \1 ; id
|
||||
dw \1 ; id
|
||||
ENDM
|
||||
|
||||
const sfx_priority_on_cmd ; $ec
|
||||
|
|
Loading…
Reference in New Issue