I would also like to see this as an option.
My problem is that I have 2 extra buttons in my arcade machine setup. I want these to ONLY control the volume + and volume -. I have another button I can use to quit the emulator. So I want to disable input_enable_hotkey_btn in general without affecting the ability to use input_volume_up, input_volume_down and input_exit_emulator. These only seem to work when a hotkey is assigned. Does anyone know how I can achieve this?
I’ve tried:
input_enable_hotkey_btn = ” ”
input_enable_hotkey_btn = “nul”
#input_enable_hotkey_btn = “9”
But these all seem to disable the ability to use the volume and exit commands. I can achieve what I want with 1 button by assigning the hotkey to be the same as what I want, ie.
input_enable_hotkey_btn = “9”
input_volume_up_btn = “9”
but this only allows me to use 1 single command rather than all 3 that I need.
I’ve even tried setting multiple input_enable_hotkey_btn, such as:
input_enable_hotkey_btn = “9”
input_volume_up_btn = “9”
input_enable_hotkey_btn = “10”
input_volume_down_btn = “10”
input_enable_hotkey_btn = “11”
input_exit_emulator_btn = “11”
…but this results in only 1 hotkey taking preference rather than all 3. Would I maybe be able to set multiple buttons for hotkeys somehow? This would allow me to use this method and achieve what I need!
Thanks for any help!