diff options
author | Eugene Sandulenko | 2018-03-28 11:58:35 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-03-28 11:58:35 +0200 |
commit | d6b5e3f611c315b2d5dca01f58c92a8b53ebc32b (patch) | |
tree | ea7c22e9a1bdc3a0b1887b3b733bab55529b30d7 /backends/graphics | |
parent | 880081aa2c475c0a8e7cf67a7cdbe6f53d05d1f4 (diff) | |
download | scummvm-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.h | 2 |
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); |