aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/samsungtv/graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/samsungtv/graphics.cpp')
-rw-r--r--backends/platform/samsungtv/graphics.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/backends/platform/samsungtv/graphics.cpp b/backends/platform/samsungtv/graphics.cpp
index 79267b8628..8a08f8a28e 100644
--- a/backends/platform/samsungtv/graphics.cpp
+++ b/backends/platform/samsungtv/graphics.cpp
@@ -542,8 +542,19 @@ void OSystem_SDL_SamsungTV::setFullscreenMode(bool enable) {
}
void OSystem_SDL_SamsungTV::warpMouse(int x, int y) {
- if (_mouseCurState.x != x || _mouseCurState.y != y)
+ int y1 = y;
+
+ if (_videoMode.aspectRatioCorrection && !_overlayVisible)
+ y1 = real2Aspect(y);
+
+ if (_mouseCurState.x != x || _mouseCurState.y != y) {
+ if (!_overlayVisible)
+ generateMouseMoveEvent(x * _videoMode.scaleFactor, y1 * _videoMode.scaleFactor);
+ else
+ generateMouseMoveEvent(x, y1);
+
setMousePos(x, y);
+ }
}
void OSystem_SDL_SamsungTV::setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, uint32 keycolor, int cursorTargetScale, const Graphics::PixelFormat *format) {