1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00

Fix override warning with MyGUI 3.4

This commit is contained in:
Andrei Kortunov 2020-10-18 09:55:55 +04:00
parent 4adc689c7a
commit d7fadc933f

View file

@ -106,10 +106,16 @@ public:
bool checkTexture(MyGUI::ITexture* _texture);
// setViewSize() is a part of MyGUI::RenderManager interface since 3.4.0 release
#if MYGUI_VERSION < MYGUI_DEFINE_VERSION(3,4,0)
void setViewSize(int width, int height);
#else
void setViewSize(int width, int height) override;
#endif
/*internal:*/
void collectDrawCalls();
void setViewSize(int width, int height);
};
}