summaryrefslogtreecommitdiff
path: root/src/pokemon_size_record.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2017-01-22 21:55:01 -0800
committerYamaArashi <shadow962@live.com>2017-01-22 22:08:38 -0800
commit535ed69d33072543b543829b86409758cc7f6318 (patch)
treee7be4a872994d59fcba07a944f0bd1ace185941f /src/pokemon_size_record.c
parenta14cd89b9ca175af2fba4faadd8989e24d1275ce (diff)
change preproc syntax for C strings
Diffstat (limited to 'src/pokemon_size_record.c')
-rw-r--r--src/pokemon_size_record.c2
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);