mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Use DEF for constants in Music IDs design flaw doc
This commit is contained in:
parent
ae79200b1d
commit
57a23299fb
@ -247,18 +247,18 @@ Redefine the special music constants in [constants/music_constants.asm](https://
|
|||||||
|
|
||||||
```diff
|
```diff
|
||||||
-; GetMapMusic picks music for this value (see home/map.asm)
|
-; GetMapMusic picks music for this value (see home/map.asm)
|
||||||
-MUSIC_MAHOGANY_MART EQU $64
|
-DEF MUSIC_MAHOGANY_MART EQU $64
|
||||||
+; GetMapMusic picks music for these values (see home/map.asm)
|
+; GetMapMusic picks music for these values (see home/map.asm)
|
||||||
+MUSIC_MAHOGANY_MART EQU $fc
|
+DEF MUSIC_MAHOGANY_MART EQU $fc
|
||||||
+MUSIC_RADIO_TOWER EQU $fd
|
+DEF MUSIC_RADIO_TOWER EQU $fd
|
||||||
|
|
||||||
; ExitPokegearRadio_HandleMusic uses these values
|
; ExitPokegearRadio_HandleMusic uses these values
|
||||||
RESTART_MAP_MUSIC EQU $fe
|
DEF RESTART_MAP_MUSIC EQU $fe
|
||||||
ENTER_MAP_MUSIC EQU $ff
|
DEF ENTER_MAP_MUSIC EQU $ff
|
||||||
-
|
-
|
||||||
-; GetMapMusic picks music for this bit flag
|
-; GetMapMusic picks music for this bit flag
|
||||||
-RADIO_TOWER_MUSIC_F EQU 7
|
-DEF RADIO_TOWER_MUSIC_F EQU 7
|
||||||
-RADIO_TOWER_MUSIC EQU 1 << RADIO_TOWER_MUSIC_F
|
-DEF RADIO_TOWER_MUSIC EQU 1 << RADIO_TOWER_MUSIC_F
|
||||||
```
|
```
|
||||||
|
|
||||||
Edit `GetMapMusic`:
|
Edit `GetMapMusic`:
|
||||||
|
Loading…
Reference in New Issue
Block a user