Skip to content

Commit

Permalink
Fixed Ursaluna's cry using P_GEN_9_CROSS_EVOS (rh-hideout#4210)
Browse files Browse the repository at this point in the history
  • Loading branch information
AsparagusEduardo authored Feb 18, 2024
1 parent 45cee81 commit 3d2e0d2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions include/constants/cries.h
Original file line number Diff line number Diff line change
Expand Up @@ -626,9 +626,9 @@ enum {
#if P_FAMILY_TEDDIURSA
CRY_TEDDIURSA,
CRY_URSARING,
#if P_GEN_9_CROSS_EVOS
#if P_GEN_8_CROSS_EVOS
CRY_URSALUNA,
#endif //P_GEN_9_CROSS_EVOS
#endif //P_GEN_8_CROSS_EVOS
#endif //P_FAMILY_TEDDIURSA
#if P_FAMILY_SLUGMA
CRY_SLUGMA,
Expand Down
8 changes: 4 additions & 4 deletions sound/cry_tables.inc
Original file line number Diff line number Diff line change
Expand Up @@ -623,9 +623,9 @@ gCryTable::
.if P_FAMILY_TEDDIURSA == TRUE
cry Cry_Teddiursa
cry Cry_Ursaring
.if P_GEN_9_CROSS_EVOS == TRUE
.if P_GEN_8_CROSS_EVOS == TRUE
cry Cry_Ursaluna
.endif @ P_GEN_9_CROSS_EVOS
.endif @ P_GEN_8_CROSS_EVOS
.endif @ P_FAMILY_TEDDIURSA
.if P_FAMILY_SLUGMA == TRUE
cry Cry_Slugma
Expand Down Expand Up @@ -3027,9 +3027,9 @@ gCryTable_Reverse::
.if P_FAMILY_TEDDIURSA == TRUE
cry_reverse Cry_Teddiursa
cry_reverse Cry_Ursaring
.if P_GEN_9_CROSS_EVOS == TRUE
.if P_GEN_8_CROSS_EVOS == TRUE
cry_reverse Cry_Ursaluna
.endif @ P_GEN_9_CROSS_EVOS
.endif @ P_GEN_8_CROSS_EVOS
.endif @ P_FAMILY_TEDDIURSA
.if P_FAMILY_SLUGMA == TRUE
cry_reverse Cry_Slugma
Expand Down
4 changes: 2 additions & 2 deletions sound/direct_sound_data.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1844,11 +1844,11 @@ Cry_Teddiursa::
Cry_Ursaring::
.incbin "sound/direct_sound_samples/cries/ursaring.bin"

.if P_GEN_9_CROSS_EVOS == TRUE
.if P_GEN_8_CROSS_EVOS == TRUE
.align 2
Cry_Ursaluna::
.incbin "sound/direct_sound_samples/cries/ursaluna.bin"
.endif @ P_GEN_9_CROSS_EVOS
.endif @ P_GEN_8_CROSS_EVOS
.endif @ P_FAMILY_TEDDIURSA

.if P_FAMILY_SLUGMA == TRUE
Expand Down

0 comments on commit 3d2e0d2

Please sign in to comment.