aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-02-18 01:57:56 -0300
committergdkchan <gab.dark.100@gmail.com>2018-02-18 01:57:56 -0300
commitc3b5b4ffebc184dd44230c237d78493027398d50 (patch)
tree6d2305076a815ef4a27a597e3ee888b9f28650e9
parent1c44d9f66da86daa84f31c891f316ee373a2d312 (diff)
parent8447635654aa38130640d9b39235a61670bc05fb (diff)
Merge branch 'master' of https://github.com/gdkchan/Ryujinx
-rw-r--r--CONFIG.md75
-rw-r--r--README.md44
2 files changed, 90 insertions, 29 deletions
diff --git a/CONFIG.md b/CONFIG.md
new file mode 100644
index 00000000..09fa13b7
--- /dev/null
+++ b/CONFIG.md
@@ -0,0 +1,75 @@
+## Config File
+
+`Ryujinx.conf` should be present in executable folder (It's an *.ini file) following this format:
+
+- `Logging_Enable_Info` *(bool)*
+
+ Enable the Informations Logging.
+
+- `Logging_Enable_Trace` *(bool)*
+
+ Enable the Trace Logging (Enabled in Debug recommanded).
+
+- `Logging_Enable_Debug` *(bool)*
+
+ Enable the Debug Logging (Enabled in Debug recommanded).
+
+- `Logging_Enable_Warn` *(bool)*
+
+ Enable the Warning Logging (Enabled in Debug recommanded).
+
+- `Logging_Enable_Error` *(bool)*
+
+ Enable the Error Logging (Enabled in Debug recommanded).
+
+- `Logging_Enable_Fatal` *(bool)*
+
+ Enable the Fatal Logging (Enabled in Debug recommanded).
+
+- `Logging_Enable_LogFile` *(bool)*
+
+ Enable writing the logging inside a Ryujinx.log file.
+
+- `Controls_Left_FakeJoycon_XX` *(int)*
+ ```
+ Controls_Left_FakeJoycon_Stick_Up (int)
+ Controls_Left_FakeJoycon_Stick_Down (int)
+ Controls_Left_FakeJoycon_Stick_Left (int)
+ Controls_Left_FakeJoycon_Stick_Right (int)
+ Controls_Left_FakeJoycon_Stick_Button (int)
+ Controls_Left_FakeJoycon_DPad_Up (int)
+ Controls_Left_FakeJoycon_DPad_Down (int)
+ Controls_Left_FakeJoycon_DPad_Left (int)
+ Controls_Left_FakeJoycon_DPad_Right (int)
+ Controls_Left_FakeJoycon_Button_Minus (int)
+ Controls_Left_FakeJoycon_Button_L (int)
+ Controls_Left_FakeJoycon_Button_ZL (int)
+ ```
+
+ Keys of the Left Emulated Joycon, the values depend of the [OpenTK Enum Keys](https://github.com/opentk/opentk/blob/develop/src/OpenTK/Input/Key.cs).
+
+ OpenTK use a QWERTY layout, so pay attention if you use another Keyboard Layout.
+
+ Ex: `Controls_Left_FakeJoycon_Button_Minus = 52` > Tab key (All Layout).
+
+- `Controls_Right_FakeJoycon_XX` *(int)*
+ ```
+ Controls_Right_FakeJoycon_Stick_Up (int)
+ Controls_Right_FakeJoycon_Stick_Down (int)
+ Controls_Right_FakeJoycon_Stick_Left (int)
+ Controls_Right_FakeJoycon_Stick_Right (int)
+ Controls_Right_FakeJoycon_Stick_Button (int)
+ Controls_Right_FakeJoycon_Button_A (int)
+ Controls_Right_FakeJoycon_Button_B (int)
+ Controls_Right_FakeJoycon_Button_X (int)
+ Controls_Right_FakeJoycon_Button_Y (int)
+ Controls_Right_FakeJoycon_Button_Plus (int)
+ Controls_Right_FakeJoycon_Button_R (int)
+ Controls_Right_FakeJoycon_Button_ZR (int)
+ ```
+
+ Keys of the right Emulated Joycon, the values depend of the [OpenTK Enum Keys](https://github.com/opentk/opentk/blob/develop/src/OpenTK/Input/Key.cs).
+
+ OpenTK use a QWERTY layout, so pay attention if you use another Keyboard Layout.
+
+ Ex: `Controls_Right_FakeJoycon_Button_A = 83` > A key (QWERTY Layout) / Q key (AZERTY Layout).
diff --git a/README.md b/README.md
index a6a583e4..f39d2f02 100644
--- a/README.md
+++ b/README.md
@@ -21,37 +21,23 @@ https://openal.org/downloads/OpenAL11CoreSDK.zip
- Arrows.
- Enter > "Start" & Tab > "Select"
- Qwerty:
- - A > "A"
+ - A > "A" (QWERTY) / Q > "A" (AZERTY)
- S > "B"
- - Z > "X"
+ - Z > "X" (QWERTY) / W > "X" (AZERTY)
- X > "Y"
- - Azerty:
- - Q > "A"
- - S > "B"
- - W > "X"
- - X > "Y"
-
- - Config File: `Ryujinx.conf` should be present on executable folder.
- - Logging_Enable_Info (bool)
- Enable the Informations Logging.
-
- - Logging_Enable_Trace (bool)
- Enable the Trace Logging (Enabled in Debug recommanded).
-
- - Logging_Enable_Debug (bool)
- Enable the Debug Logging (Enabled in Debug recommanded).
-
- - Logging_Enable_Warn (bool)
- Enable the Warning Logging (Enabled in Debug recommanded).
-
- - Logging_Enable_Error (bool)
- Enable the Error Logging (Enabled in Debug recommanded).
-
- - Logging_Enable_Fatal (bool)
- Enable the Fatal Logging (Enabled in Debug recommanded).
-
- - Logging_Enable_LogFile (bool)
- Enable writing the logging inside a Ryujinx.log file.
+ - Key_Up > "Right Stick Up"
+ - Key_Down > "Right Stick Down"
+ - Key_Left > "Right Stick Left"
+ - Key_Right > "Right Stick Right"
+ - I > "Left Stick Up"
+ - K > "Left Stick Down"
+ - J > "Left Stick Left"
+ - L > "Left Stick Right"
+ - Tab > "Minus"
+ - Enter > "Plus"
+
+ - Config File: `Ryujinx.conf` should be present in executable folder.
+ For more informations [you can go here](CONFIG.md).
**Help**