diff options
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu_cmd/default_ini.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index 8d18a4a5a..e829f8695 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h | |||
| @@ -69,12 +69,29 @@ rstick= | |||
| 69 | # - "motion_emu" (default) for emulating motion input from mouse input. Required parameters: | 69 | # - "motion_emu" (default) for emulating motion input from mouse input. Required parameters: |
| 70 | # - "update_period": update period in milliseconds (default to 100) | 70 | # - "update_period": update period in milliseconds (default to 100) |
| 71 | # - "sensitivity": the coefficient converting mouse movement to tilting angle (default to 0.01) | 71 | # - "sensitivity": the coefficient converting mouse movement to tilting angle (default to 0.01) |
| 72 | # - "cemuhookudp" reads motion input from a udp server that uses cemuhook's udp protocol | ||
| 72 | motion_device= | 73 | motion_device= |
| 73 | 74 | ||
| 74 | # for touch input, the following devices are available: | 75 | # for touch input, the following devices are available: |
| 75 | # - "emu_window" (default) for emulating touch input from mouse input to the emulation window. No parameters required | 76 | # - "emu_window" (default) for emulating touch input from mouse input to the emulation window. No parameters required |
| 77 | # - "cemuhookudp" reads touch input from a udp server that uses cemuhook's udp protocol | ||
| 78 | # - "min_x", "min_y", "max_x", "max_y": defines the udp device's touch screen coordinate system | ||
| 76 | touch_device= | 79 | touch_device= |
| 77 | 80 | ||
| 81 | # Most desktop operating systems do not expose a way to poll the motion state of the controllers | ||
| 82 | # so as a way around it, cemuhook created a udp client/server protocol to broadcast the data directly | ||
| 83 | # from a controller device to the client program. Citra has a client that can connect and read | ||
| 84 | # from any cemuhook compatible motion program. | ||
| 85 | |||
| 86 | # IPv4 address of the udp input server (Default "127.0.0.1") | ||
| 87 | udp_input_address= | ||
| 88 | |||
| 89 | # Port of the udp input server. (Default 26760) | ||
| 90 | udp_input_port= | ||
| 91 | |||
| 92 | # The pad to request data on. Should be between 0 (Pad 1) and 3 (Pad 4). (Default 0) | ||
| 93 | udp_pad_index= | ||
| 94 | |||
| 78 | [Core] | 95 | [Core] |
| 79 | # Whether to use multi-core for CPU emulation | 96 | # Whether to use multi-core for CPU emulation |
| 80 | # 0 (default): Disabled, 1: Enabled | 97 | # 0 (default): Disabled, 1: Enabled |