diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-09-30 16:48:30 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-09-30 16:48:30 -0700 |
commit | 37b891cbd49780d63fe2295add70bf003c59de48 (patch) | |
tree | 7546411871d12a05f370b529341ebfd656334af1 | |
parent | 4c5bfdc153a8484c00aae30ed22badf006d7f8d9 (diff) |
Add missing extern to included texts
-rw-r--r-- | include/trade.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/trade.h b/include/trade.h index a44388506..f950aca53 100644 --- a/include/trade.h +++ b/include/trade.h @@ -14,9 +14,9 @@ struct SomeTradeStruct extern struct SomeTradeStruct* gUnknown_03004828; -const u8 gOtherText_MaleSymbol3[1]; -const u8 gOtherText_FemaleSymbol3[1]; -const u8 gOtherText_GenderlessSymbol[1]; +extern const u8 gOtherText_MaleSymbol3[1]; +extern const u8 gOtherText_FemaleSymbol3[1]; +extern const u8 gOtherText_GenderlessSymbol[1]; void sub_804E22C(void); |