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.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/backends/platform/samsungtv/graphics.cpp b/backends/platform/samsungtv/graphics.cpp
index 88f4674c54..79267b8628 100644
--- a/backends/platform/samsungtv/graphics.cpp
+++ b/backends/platform/samsungtv/graphics.cpp
@@ -541,6 +541,11 @@ void OSystem_SDL_SamsungTV::setFullscreenMode(bool enable) {
}
}
+void OSystem_SDL_SamsungTV::warpMouse(int x, int y) {
+ if (_mouseCurState.x != x || _mouseCurState.y != y)
+ 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) {
if (!format)
_cursorFormat = Graphics::PixelFormat::createFormatCLUT8();
@@ -837,8 +842,4 @@ void OSystem_SDL_SamsungTV::drawMouse() {
addDirtyRect(dst.x, dst.y, dst.w, dst.h, true);
}
-void OSystem_SDL_SamsungTV::warpMouse(int x, int y) {
- setMousePos(x, y);
-}
-
#endif