diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 01:47:36 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-29 01:47:36 -0400 |
commit | 038abf80ba30a277420e0381312c0cfc2296811e (patch) | |
tree | ab951530e74209c0da170bc74ddd8b5a456bab9a /src/pokemon_storage_system_2.c | |
parent | d7ec1d234b260df869213e195055dd75bcbe5cf3 (diff) |
Give songs meaningful english names
Diffstat (limited to 'src/pokemon_storage_system_2.c')
-rw-r--r-- | src/pokemon_storage_system_2.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/pokemon_storage_system_2.c b/src/pokemon_storage_system_2.c index 6ebb8ff8a..79ebc93ee 100644 --- a/src/pokemon_storage_system_2.c +++ b/src/pokemon_storage_system_2.c @@ -412,7 +412,7 @@ void sub_8096BF0(void) gPokemonStorageSystemPtr->unk_0004++; break; case 1: - PlaySE(SE_PC_LOGON); + PlaySE(SE_PC_LOGIN); gPokemonStorageSystemPtr->unk_000c.tileTag = 14; gPokemonStorageSystemPtr->unk_000c.paletteTag = 0xdad0; gPokemonStorageSystemPtr->unk_000c.unk04 = 0; @@ -586,12 +586,12 @@ void sub_8096C84(void) } break; case 4: - PlaySE(SE_HAZURE); + PlaySE(SE_FAILURE); PrintStorageActionText(PC_TEXT_LAST_POKE); gPokemonStorageSystemPtr->unk_0004 = 6; break; case 5: - PlaySE(SE_HAZURE); + PlaySE(SE_FAILURE); PrintStorageActionText(PC_TEXT_PLEASE_REMOVE_MAIL); gPokemonStorageSystemPtr->unk_0004 = 6; break; @@ -751,17 +751,17 @@ void sub_8097078(void) } break; case 2: - PlaySE(SE_HAZURE); + PlaySE(SE_FAILURE); PrintStorageActionText(PC_TEXT_LAST_POKE); gPokemonStorageSystemPtr->unk_0004 = 5; break; case 4: - PlaySE(SE_HAZURE); + PlaySE(SE_FAILURE); PrintStorageActionText(PC_TEXT_CANT_RELEASE_EGG); gPokemonStorageSystemPtr->unk_0004 = 5; break; case 3: - PlaySE(SE_HAZURE); + PlaySE(SE_FAILURE); PrintStorageActionText(PC_TEXT_PLEASE_REMOVE_MAIL); gPokemonStorageSystemPtr->unk_0004 = 5; break; @@ -1305,7 +1305,7 @@ void sub_8097BA0(void) case 0: if (sub_809BF20()) { - PlaySE(SE_HAZURE); + PlaySE(SE_FAILURE); PrintStorageActionText(PC_TEXT_HOLDING_POKE); gPokemonStorageSystemPtr->unk_0004 = 1; } @@ -1364,7 +1364,7 @@ void sub_8097CC0(void) case 0: if (sub_809BF20()) { - PlaySE(SE_HAZURE); + PlaySE(SE_FAILURE); PrintStorageActionText(PC_TEXT_HOLDING_POKE); gPokemonStorageSystemPtr->unk_0004 = 1; } |