diff options
author | YamaArashi <shadow962@live.com> | 2017-01-22 21:55:01 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2017-01-22 22:08:38 -0800 |
commit | 535ed69d33072543b543829b86409758cc7f6318 (patch) | |
tree | e7be4a872994d59fcba07a944f0bd1ace185941f /src/pokemon_size_record.c | |
parent | a14cd89b9ca175af2fba4faadd8989e24d1275ce (diff) |
change preproc syntax for C strings
Diffstat (limited to 'src/pokemon_size_record.c')
-rw-r--r-- | src/pokemon_size_record.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokemon_size_record.c b/src/pokemon_size_record.c index 92743b729..6540858c1 100644 --- a/src/pokemon_size_record.c +++ b/src/pokemon_size_record.c @@ -88,7 +88,7 @@ static u32 GetMonSize(u16 species, u16 b) static void FormatMonSizeRecord(u8 *string, u32 size) { - u8 decimalPoint[] = _"."; + u8 decimalPoint[] = _("."); //Convert size from centimeters to inches size = (double)(size * 10) / (CM_PER_INCH * 10); |