diff options
-rw-r--r-- | audio/cries.asm | 6 | ||||
-rw-r--r-- | audio/sfx.asm | 18 | ||||
-rw-r--r-- | battle/moves/move_descriptions.asm | 1 | ||||
-rwxr-xr-x | engine/pokegear.asm | 6 | ||||
-rwxr-xr-x | engine/rtc.asm | 10 | ||||
-rwxr-xr-x | engine/slot_machine.asm | 7 | ||||
-rwxr-xr-x | engine/stats_screen.asm | 1 |
7 files changed, 25 insertions, 24 deletions
diff --git a/audio/cries.asm b/audio/cries.asm index 66b6d3c98..7848d185e 100644 --- a/audio/cries.asm +++ b/audio/cries.asm @@ -1166,7 +1166,7 @@ Cry_Weepinbell: ; f35ca musicheader 1, 8, Cry_Weepinbell_Ch8 ; f35d3 -Unknown_Cry_Ch5: ; f35d3 +Unused_Cry_Ch5: ; f35d3 sound_duty 0, 0, 3, 3 sound __, 16, $e0, $0780 sound __, 16, $f0, $0784 @@ -1177,7 +1177,7 @@ Unknown_Cry_Ch5: ; f35d3 endchannel ; f35ee -Unknown_Cry_Ch6: ; f35ee +Unused_Cry_Ch6: ; f35ee sound_duty 1, 1, 0, 0 sound __, 16, $a0, $0741 sound __, 16, $b0, $0743 @@ -1188,7 +1188,7 @@ Unknown_Cry_Ch6: ; f35ee endchannel ; f3609 -Unknown_Cry_Ch8: ; f3609 +Unused_Cry_Ch8: ; f3609 noise __, 3, $f2, $4c noise __, 7, $e0, $3a noise __, 16, $d0, $3a diff --git a/audio/sfx.asm b/audio/sfx.asm index 7347bc84f..a47f521e0 100644 --- a/audio/sfx.asm +++ b/audio/sfx.asm @@ -968,14 +968,14 @@ Sfx_Fanfare2: ; f0d56 musicheader 1, 8, Sfx_Fanfare2_Ch8 ; f0d5f -UnknownSfx: ; f0d5f - musicheader 4, 5, UnknownSfx_Ch5 - musicheader 1, 6, UnknownSfx_Ch6 - musicheader 1, 7, UnknownSfx_Ch7 - musicheader 1, 8, UnknownSfx_Ch8 +UnusedSfx: ; f0d5f + musicheader 4, 5, UnusedSfx_Ch5 + musicheader 1, 6, UnusedSfx_Ch6 + musicheader 1, 7, UnusedSfx_Ch7 + musicheader 1, 8, UnusedSfx_Ch8 ; f0d6b -UnknownSfx_Ch5: ; f0d6b +UnusedSfx_Ch5: ; f0d6b togglesfx tempo 124 volume $77 @@ -1000,7 +1000,7 @@ UnknownSfx_Ch5: ; f0d6b endchannel ; f0d8a -UnknownSfx_Ch6: ; f0d8a +UnusedSfx_Ch6: ; f0d8a togglesfx vibrato $8, $27 dutycycle $2 @@ -1025,7 +1025,7 @@ UnknownSfx_Ch6: ; f0d8a endchannel ; f0da6 -UnknownSfx_Ch7: ; f0da6 +UnusedSfx_Ch7: ; f0da6 togglesfx notetype $c, $25 octave 4 @@ -1041,7 +1041,7 @@ UnknownSfx_Ch7: ; f0da6 endchannel ; f0db6 -UnknownSfx_Ch8: ; f0db6 +UnusedSfx_Ch8: ; f0db6 togglesfx sfxtogglenoise $4 notetype $c diff --git a/battle/moves/move_descriptions.asm b/battle/moves/move_descriptions.asm index 19659b32a..d86ceea37 100644 --- a/battle/moves/move_descriptions.asm +++ b/battle/moves/move_descriptions.asm @@ -263,7 +263,6 @@ MoveFDDescription: MoveFEDescription: MoveFFDescription: Move00Description: -UnknownMoveDescription: db "?@" PoundDescription: diff --git a/engine/pokegear.asm b/engine/pokegear.asm index d38f8c6a8..2529e3b0e 100755 --- a/engine/pokegear.asm +++ b/engine/pokegear.asm @@ -1688,7 +1688,7 @@ LoadStation_UnownRadio: ; 917d5 (24:57d5) ld a, BANK(PlayRadioShow) ld hl, PlayRadioShow call Radio_BackUpFarCallParams - ld de, UnknownStationName + ld de, UnownStationName ret LoadStation_PlacesAndPeople: ; 917ea (24:57ea) @@ -1747,7 +1747,7 @@ LoadStation_EvolutionRadio: ; 9183e (24:583e) ld a, BANK(PlayRadioShow) ld hl, PlayRadioShow call Radio_BackUpFarCallParams - ld de, UnknownStationName + ld de, UnownStationName ret ; 91853 (24:5853) @@ -1821,7 +1821,7 @@ OaksPkmnTalkName: db "OAK's <PK><MN> Talk@" PokedexShowName: db "#DEX Show@" PokemonMusicName: db "#MON Music@" LuckyChannelName: db "Lucky Channel@" -UnknownStationName: db "?????@" +UnownStationName: db "?????@" PlacesAndPeopleName: db "Places & People@" LetsAllSingName: db "Let's All Sing!@" diff --git a/engine/rtc.asm b/engine/rtc.asm index e2699a637..dc49a9630 100755 --- a/engine/rtc.asm +++ b/engine/rtc.asm @@ -58,11 +58,11 @@ TimesOfDay: ; 14044 db -1, MORN_F ; 1404e -Unknown_1404e: ; Unreferenced - db 20, 2 - db 40, 0 - db 60, 1 - db -1, 0 +Unknown_1404e: ; unreferenced + db 20, NITE_F + db 40, MORN_F + db 60, DAY_F + db -1, MORN_F ; 14056 StageRTCTimeForSave: ; 14056 diff --git a/engine/slot_machine.asm b/engine/slot_machine.asm index 037340413..db5a2735f 100755 --- a/engine/slot_machine.asm +++ b/engine/slot_machine.asm @@ -766,14 +766,15 @@ UpdateReelPositionAndOAM: ; 92b53 (24:6b53) ; 92bbe (24:6bbe) +; unreferenced Function92bbe: ; 92bbe push hl srl a srl a - add Unknown_92bce % $100 + add .Unknown_92bce % $100 ld l, a ld a, 0 - adc Unknown_92bce / $100 + adc .Unknown_92bce / $100 ld h, a ld a, [hl] pop hl @@ -781,7 +782,7 @@ Function92bbe: ; 92bbe ; 92bce -Unknown_92bce: ; 92bce +.Unknown_92bce: ; 92bce db 0, 1, 2, 3, 4, 5 ; 92bd4 diff --git a/engine/stats_screen.asm b/engine/stats_screen.asm index 1f019c105..da02808b1 100755 --- a/engine/stats_screen.asm +++ b/engine/stats_screen.asm @@ -965,6 +965,7 @@ StatsScreen_LoadTextBoxSpaceGFX: ; 4e307 (13:6307) ret ; 4e32a (13:632a) +; unreferenced Unknown_4e32a: ; 4e32a ; A blank tile? ds 16 |