From ab81a9b0a3619b5043f4752580d79f2c14b96e73 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 23 Sep 2017 09:20:37 -0400 Subject: Fixed Japanese left quote codepoint --- source/encoding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/encoding.c b/source/encoding.c index 0a44800..3d888fa 100644 --- a/source/encoding.c +++ b/source/encoding.c @@ -332,7 +332,7 @@ void decodePokemonCharset( // left white corner bracket if (language == Japanese) { - next = "\xe3\x80\x83"; + next = "\xe3\x80\x8e"; } // double low-9 quotation mark else if (language == German) -- cgit 1.4.1