mirror of
https://github.com/libretro/RetroArch
synced 2025-02-16 03:40:12 +00:00
For each player, 2 new options are added: - a reservation type (no reservation, preferred, reserved) - a reserved device name When handling port - player assignments, reserved devices will be assigned to the respective player port. If reservation type is "reserved", no other device can take that port automatically. Reservation config option and matching function lifted from: PatrickStankard https://github.com/libretro/RetroArch/pull/16269 Test joypad driver was extended for more tests. Co-authored-by: Patrick Stankard <me@patrickstankard.com>
20 lines
993 B
INI
20 lines
993 B
INI
# Test configuration file to be used with --appendconfig.
|
|
# Sets up joypad driver, test input file for the joypad driver,
|
|
# logging and autoconfig dir, and prevents saving.
|
|
# Usage: retroarch --appendconfig tests-other/testinput.cfg\|tests_other/all_binds_empty.cfg
|
|
# Usage with retropad test counterpart: retroarch --appendconfig tests_other/testinput.cfg\|tests_other/all_binds_empty.cfg -L netretropad tests_other/netretropad_all_inputs.ratst
|
|
|
|
input_joypad_driver = "test"
|
|
test_input_file_joypad = "tests-other/test_input_joypad.ratst"
|
|
joypad_autoconfig_dir = "tests-other/autoconf"
|
|
frontend_log_level = "0"
|
|
libretro_log_level = "0"
|
|
log_verbosity = "true"
|
|
config_save_on_exit = "false"
|
|
input_player4_reserved_device = "Test joypad device B"
|
|
input_player4_device_reservation_type = "2"
|
|
input_player1_reserved_device = "Test joypad device C"
|
|
input_player1_device_reservation_type = "1"
|
|
input_player2_reserved_device = "fake reservation 2"
|
|
input_player3_reserved_device = "fake reservation 3"
|