From 6a8cf7ac2e20aea27d7a39f5f33b1cfd14d28438 Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Sat, 14 Mar 2026 18:43:49 +0100 Subject: [PATCH] *that* function --- src/core/libraries/move/move.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/core/libraries/move/move.cpp b/src/core/libraries/move/move.cpp index d522cac77..40c4aa452 100644 --- a/src/core/libraries/move/move.cpp +++ b/src/core/libraries/move/move.cpp @@ -123,7 +123,11 @@ s32 PS4_SYSV_ABI sceMoveSetVibration(s32 handle, u8 intensity) { if (!g_library_initialized) { return ORBIS_MOVE_ERROR_NOT_INIT; } - return ORBIS_MOVE_ERROR_NO_CONTROLLER_CONNECTED; + if (!controllers.moves(0)->m_sdl_gamepad) { + return ORBIS_MOVE_ERROR_NO_CONTROLLER_CONNECTED; + } + controllers.moves(0)->SetVibration(0, intensity); + return ORBIS_OK; } s32 PS4_SYSV_ABI sceMoveSetLightSphere(s32 handle, u8 red, u8 green, u8 blue) {