diff --git a/app/streaming/input/gamepad.cpp b/app/streaming/input/gamepad.cpp index b3b474e5..526e12dd 100644 --- a/app/streaming/input/gamepad.cpp +++ b/app/streaming/input/gamepad.cpp @@ -212,6 +212,12 @@ void SdlInputHandler::handleControllerButtonEvent(SDL_ControllerButtonEvent* eve else if (event->button == SDL_CONTROLLER_BUTTON_DPAD_DOWN) { LiSendScrollEvent(-1); } + else if (event->button == SDL_CONTROLLER_BUTTON_DPAD_RIGHT) { + LiSendHScrollEvent(1); + } + else if (event->button == SDL_CONTROLLER_BUTTON_DPAD_LEFT) { + LiSendHScrollEvent(-1); + } } } else {