summaryrefslogtreecommitdiff
path: root/src/pokedex.c
diff options
context:
space:
mode:
authornullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2018-11-27 19:37:29 +0800
committernullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2018-11-27 19:37:29 +0800
commit556bdd52e1ba5bf1c1cc3b00baab3bf7fc60d9f9 (patch)
tree99bc2544695e94e72417138648ed9744e37698fe /src/pokedex.c
parent977e0bc34514244d4afc35bb1edece166386f051 (diff)
Clean up aligned variables in src/
Diffstat (limited to 'src/pokedex.c')
-rw-r--r--src/pokedex.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pokedex.c b/src/pokedex.c
index 6d8e701f9..66a68f0bd 100644
--- a/src/pokedex.c
+++ b/src/pokedex.c
@@ -798,8 +798,7 @@ static const u8 gUnknown_0855D2B8[] = _("{NO}000");
static const u8 gUnknown_0855D2BE[] = INCBIN_U8("graphics/pokedex/caught_ball.4bpp");
static const u8 sText_TenDashes[] = _("----------");
-asm(".align 2");
-static const u8 gUnknown_0855D30C[] = _("");
+ALIGNED(4) static const u8 gExpandedPlaceholder_PokedexDescription[] = _("");
#include "data/pokemon/pokedex_text.h"
#include "data/pokemon/pokedex_entries.h"
@@ -3919,7 +3918,7 @@ void sub_80C020C(u32 num, u32 value, u32 c, u32 d)
if (c)
text3 = gPokedexEntries[num].description;
else
- text3 = gUnknown_0855D30C;
+ text3 = gExpandedPlaceholder_PokedexDescription;
sub_80BE8DC(text3, GetStringCenterAlignXOffset(1, text3, 0xF0), 0x5F);
}