Skip to content

Commit

Permalink
Enabled winkey and keyboard_mode 1 by default in config
Browse files Browse the repository at this point in the history
As requested by Clippy95
  • Loading branch information
marinesciencedude committed Dec 26, 2024
1 parent 1e6119d commit e05cc3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xenia/app/xenia_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
DEFINE_string(apu, "any", "Audio system. Use: [any, nop, sdl, xaudio2]", "APU");
DEFINE_string(gpu, "any", "Graphics system. Use: [any, d3d12, vulkan, null]",
"GPU");
DEFINE_string(hid, "any", "Input system. Use: [any, nop, sdl, winkey, xinput]",
DEFINE_string(hid, "winkey", "Input system. Use: [any, nop, sdl, winkey, xinput]",
"HID");

DEFINE_path(
Expand Down
2 changes: 1 addition & 1 deletion src/xenia/hid/winkey/winkey_input_driver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ DEFINE_bool(
#include "winkey_binding_table.inc"
#undef XE_HID_WINKEY_BINDING

DEFINE_int32(keyboard_mode, 0,
DEFINE_int32(keyboard_mode, 1,
"Allows user do specify keyboard working mode. Possible values: 0 "
"- Disabled, 1 - Enabled, 2 - Passthrough. Passthrough requires "
"controller being connected!",
Expand Down

0 comments on commit e05cc3e

Please sign in to comment.