Updated Ryujinx Setup & Configuration Guide (Windows) (markdown)

EmulationFanatic 2020-07-09 10:50:12 -06:00
parent 6fa0690c3d
commit d873001280

@ -23,6 +23,8 @@ from: <https://ryujinx.org/download>
[Managing DLC](#managing-dlc)
[Managing Mods](#managing-mods)
[Input Configuration](#input-configuration)
[Profiled Persistent Translation Cache](#profiled-persistent-translation-cache)
@ -228,6 +230,42 @@ DLC.
Repeat this process, if you wish, for any other games you would like to manage DLC for.
Managing Mods
============
Quick Start Guide for managing mods
Various game mods are available from enthusiasts & content creators online. _Ryujinx_ supports the following types of mods:
1. ExeFS Partition Replacement
2. ExeFS File Replacement
3. ExeFS Patching
4. RomFS Partition Replacement
5. RomFS File Replacement
**For a in-depth explanation of mods implementation & usage in _Ryujinx_, check the description in the original PR [here](https://github.com/Ryujinx/Ryujinx/pull/1249)**.
To enable partition/file replacement mods for a particular game:
1. With _Ryujinx_ open, right-click on the game you wish to manage mods for and click _Open Mods Directory_.
![image](https://user-images.githubusercontent.com/62343878/87058158-f9fbc900-c1c4-11ea-8dcd-7bea51fc71e6.png)
This will open the AppData\Roaming\Ryujinx\mods\contents\<game ID>\ folder.
2. Create a subfolder under the game id folder with an appropriate name conveying the mod you will be using i.e. name the folder "Lana" if you were using a mod to add a Lana skin to Mario Kart 8 Deluxe.
![image](https://user-images.githubusercontent.com/62343878/87060018-3d573700-c1c7-11ea-82f8-3a54c788490c.png)
3. Copy your mod's romfs folder, exefs folder, or other loose files into the new folder you created.
![image](https://user-images.githubusercontent.com/62343878/87066559-00dc0900-c1d0-11ea-8156-7188fdb84d10.png)
To enable exefs patching:
You may either follow the above method and place an exefs subfolder under the AppData\Roaming\Ryujinx\mods\contents\<game ID>\ folder, or you may simply create subfolders for each game you wish to apply these patches to under the AppData\Roaming\Ryujinx\mods\exefs_patches folder. _Ryujinx_ will automatically apply the correct mod for your game.
![image](https://user-images.githubusercontent.com/62343878/87067239-04bc5b00-c1d1-11ea-8ec0-61c47356d0b5.png)
Input Configuration
===================