Albeoris / Memoria.FFPR

MIT License
68 stars 5 forks source link

Japanese doesn't always display in json files extracted. #34

Closed fallacies-GitHub closed 2 years ago

fallacies-GitHub commented 2 years ago

An acquaintance's install of Memoria was able to successfully dump the following when extracting text assets from FFVI-PR::

          "gid": 1023,
          "height": 16,
          "id": 115,
          "name": "フェニックスの尾×1",

However, in the assets that I've extracted, the same part of the same file looks as follows:

                    "gid": 1023,
                    "height": 16,
                    "id": 108,
                    "name": "\u30d5\u30a7\u30cb\u30c3\u30af\u30b9\u306e\u5c3e\u00d71",

The string of characters appears to be unconverted Unicode. Is this some issue on my end? I'm using VSCode to display the json file. For reference, the file in question is Map_20360/entity_default.json

Also, Japanese displays properly in other instances. For example, sc_npc_20360_1.json from the same folder properly displays 汎用スクリプト.

EDIT:

Resolved issue on my end with a Native-ASCII Converter in VSCode. You can close the issue.