diff options
author | Patric Stout <truebrain@openttd.org> | 2021-02-20 11:15:15 +0100 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-02-20 17:08:44 +0100 |
commit | ec1dd0bf618f2c4fe17c62db9eec3b5e056574a0 (patch) | |
tree | 07ccc0fcb66cc6f73b01fc9e0cf1b29f6b82e7cb /src/video/cocoa | |
parent | 790fa7102ec934544b427dd5fa9fc4f7099fd4da (diff) | |
download | openttd-ec1dd0bf618f2c4fe17c62db9eec3b5e056574a0.tar.xz |
Codechange: be consistent in what CheckPaletteAnim() does and when it is called
Additionally, make sure this is a class method. Later commits
will make use of this.
Diffstat (limited to 'src/video/cocoa')
-rw-r--r-- | src/video/cocoa/cocoa_v.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/cocoa/cocoa_v.h b/src/video/cocoa/cocoa_v.h index 09668ed8b..7e4d8c9fd 100644 --- a/src/video/cocoa/cocoa_v.h +++ b/src/video/cocoa/cocoa_v.h @@ -76,6 +76,7 @@ protected: float GetDPIScale() override; void InputLoop() override; void Paint() override; + void CheckPaletteAnim() override; private: bool PollEvent(); @@ -88,7 +89,6 @@ private: bool MakeWindow(int width, int height); void UpdatePalette(uint first_color, uint num_colors); - void CheckPaletteAnim(); void BlitIndexedToView32(int left, int top, int right, int bottom); }; |