From b38563243f4575836d7ff60df37e82e55a056c1b Mon Sep 17 00:00:00 2001 From: Denis Date: Wed, 3 Jan 2024 03:16:39 +0100 Subject: [PATCH] Do not use bluetooth for dualshock for now --- dev_out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_out.c b/dev_out.c index b71eb9b..721737c 100644 --- a/dev_out.c +++ b/dev_out.c @@ -442,7 +442,7 @@ void *dev_out_thread_func(void *ptr) { printf("DualSense initialized: fd=%d\n", current_gamepad_fd); } } else if (current_gamepad == GAMEPAD_DUALSHOCK) { - const int ds4_init_res = virt_dualshock_init(&controller_data.ds4, true); + const int ds4_init_res = virt_dualshock_init(&controller_data.ds4, false); if (ds4_init_res != 0) { fprintf(stderr, "Unable to initialize the DualShock device: %d\n", ds4_init_res); } else {