diff options
author | yenatch <yenatch@gmail.com> | 2017-06-25 00:31:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-25 00:31:41 -0400 |
commit | 8dd12ad0e3faeee0e88b62bf486a764717b171fe (patch) | |
tree | b776589bf88596d7280011c3ea1d9befd32b287f /src/pokemon_storage_system.c | |
parent | e72babd734ab7fd4e5c6d29f456b82d5e76e1bde (diff) | |
parent | 2cae14cf5ae83831d5c387b3823de34d8d476908 (diff) |
Merge pull request #324 from marijnvdwerf/de/integrate-data-includes
Integrate German
Diffstat (limited to 'src/pokemon_storage_system.c')
-rw-r--r-- | src/pokemon_storage_system.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pokemon_storage_system.c b/src/pokemon_storage_system.c index fb837f1f6..0cab07fc1 100644 --- a/src/pokemon_storage_system.c +++ b/src/pokemon_storage_system.c @@ -42,10 +42,13 @@ void sub_8098898(u8 index) { break; case 4: - // TODO: fix for German // {var} + " was released." ptr = StringCopy(gUnk2002694, gUnk20026e4); +#if ENGLISH ptr = StringCopy(ptr, gUnknown_083B6DF4[index].text); +#elif GERMAN + ptr = de_sub_8073174(gUnk2002694, gUnknown_083B6DF4[index].text); +#endif break; case 3: |