aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics
diff options
context:
space:
mode:
authorEugene Sandulenko2018-03-28 11:58:35 +0200
committerEugene Sandulenko2018-03-28 11:58:35 +0200
commitd6b5e3f611c315b2d5dca01f58c92a8b53ebc32b (patch)
treeea7c22e9a1bdc3a0b1887b3b733bab55529b30d7 /backends/graphics
parent880081aa2c475c0a8e7cf67a7cdbe6f53d05d1f4 (diff)
downloadscummvm-rg350-d6b5e3f611c315b2d5dca01f58c92a8b53ebc32b.tar.gz
scummvm-rg350-d6b5e3f611c315b2d5dca01f58c92a8b53ebc32b.tar.bz2
scummvm-rg350-d6b5e3f611c315b2d5dca01f58c92a8b53ebc32b.zip
BAKCENDS: Mark methods as override
Diffstat (limited to 'backends/graphics')
-rw-r--r--backends/graphics/windowed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/graphics/windowed.h b/backends/graphics/windowed.h
index 5f89d2d233..8a0bddf5be 100644
--- a/backends/graphics/windowed.h
+++ b/backends/graphics/windowed.h
@@ -201,7 +201,7 @@ protected:
* @param x The new X position of the mouse in virtual screen coordinates.
* @param y The new Y position of the mouse in virtual screen coordinates.
*/
- void warpMouse(const int x, const int y) {
+ void warpMouse(const int x, const int y) override {
// Check active coordinate instead of window coordinate to avoid warping
// the mouse if it is still within the same virtual pixel
const Common::Point virtualCursor = convertWindowToVirtual(_cursorX, _cursorY);