diff options
author | Patric Stout <truebrain@openttd.org> | 2021-02-20 22:14:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 22:14:26 +0100 |
commit | e1b1608dc6cb0f2befebcb7ee5255881a5861098 (patch) | |
tree | d39308f087e33faba32c1be248d2da168b02d830 | |
parent | d16dc22fdfa8abf80e063d0a2b75c038c8fd5f12 (diff) | |
download | openttd-e1b1608dc6cb0f2befebcb7ee5255881a5861098.tar.xz |
Fix ec1dd0bf: missing override causing compiler warnings (#8708)
-rw-r--r-- | src/video/sdl2_v.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/sdl2_v.h b/src/video/sdl2_v.h index d96e321f6..8c47d6aa0 100644 --- a/src/video/sdl2_v.h +++ b/src/video/sdl2_v.h @@ -48,7 +48,7 @@ protected: void UnlockVideoBuffer() override; void Paint() override; void PaintThread() override; - void CheckPaletteAnim(); + void CheckPaletteAnim() override; private: int PollEvent(); |