user directory on other systems.

wwylele 2016-10-13 09:30:17 +08:00
parent d48de28b8e
commit 4c58123e33

@ -5,30 +5,30 @@ At this time, Citra can run many games without needing to do any special work on
This tutorial will teach you [how to dump the system archives and system font](https://github.com/citra-emu/citra/wiki/Home-Folder#how-to-dump-system-archives-nand00000000000000000000000000000000-folder-and-system-font-sysdatashared_fontbin), which are critical for some games, such as Pokemon, to work. It will also teach you how to [dump the config savegame](https://github.com/citra-emu/citra/wiki/Home-Folder#how-to-dump-the-config-savegame-nanddata00000000000000000000000000000000sysdata0001001700000000config), but that is much more difficult to do and is generally not required to play most titles except in certain special cases. This tutorial will teach you [how to dump the system archives and system font](https://github.com/citra-emu/citra/wiki/Home-Folder#how-to-dump-system-archives-nand00000000000000000000000000000000-folder-and-system-font-sysdatashared_fontbin), which are critical for some games, such as Pokemon, to work. It will also teach you how to [dump the config savegame](https://github.com/citra-emu/citra/wiki/Home-Folder#how-to-dump-the-config-savegame-nanddata00000000000000000000000000000000sysdata0001001700000000config), but that is much more difficult to do and is generally not required to play most titles except in certain special cases.
##### Preview of the dumped files in this tutorial after being merged into Citra, from Citra's root directory ##### Preview of the dumped files in this tutorial after being merged into Citra, from Citra's root directory
Location of the "user directory": on Windows it is the `user` folder along with Citra; on Mac OS X or Linux (?) it is `~/.local/share/citra-emu/`
``` ```
. "User directory"
└── user ├── nand
├── nand │   ├── 00000000000000000000000000000000
│   ├── 00000000000000000000000000000000 │   │   └── title
│   │   └── title │   │   ├── 0004009b
│   │   ├── 0004009b |   │   │   ├── 00010202
│   │   │   ├── 00010202 │   │   │   │   └── content
│   │   │   │   └── content │   │   │   │   └── 00000000.app.romfs
│   │   │   │   └── 00000000.app.romfs │   │   │   └── 00010402
│   │   │   └── 00010402 │   │   │   └── content
│   │   │   └── content │   │   │   └── 00000000.app.romfs
│   │   │   └── 00000000.app.romfs │   │   └── 000400db
│   │   └── 000400db │   │   └── 00010302
│   │   └── 00010302 │   │   └── content
│   │   └── content │   │   └── 00000000.app.romfs
│   │   └── 00000000.app.romfs │   └── data
│   └── data │   └── 00000000000000000000000000000000
│   └── 00000000000000000000000000000000 │   └── sysdata
│   └── sysdata │   └── 00010017
│   └── 00010017 │   └── 00000000
│   └── 00000000 │   └── config (optional)
│   └── config (optional) └── sysdata
└── sysdata
└── shared_font.bin └── shared_font.bin
``` ```