diff options
author | sfan5 <sfan5@live.de> | 2023-02-18 00:29:34 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2023-02-18 16:46:51 +0100 |
commit | 3bafbaac49e3d5d1d633b26f60fd4e919399819b (patch) | |
tree | b70231e8eb18fdf8b3d2cf2007919a5e46540db0 /src/gui/guiButton.cpp | |
parent | 2dafce6206dfcf02f3c31cf1abe819e901489704 (diff) | |
download | minetest-3bafbaac49e3d5d1d633b26f60fd4e919399819b.tar.xz |
Remove dead code behind Irrlicht version checks
Diffstat (limited to 'src/gui/guiButton.cpp')
-rw-r--r-- | src/gui/guiButton.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gui/guiButton.cpp b/src/gui/guiButton.cpp index be7e0c439..3a2ddde1c 100644 --- a/src/gui/guiButton.cpp +++ b/src/gui/guiButton.cpp @@ -499,12 +499,10 @@ video::SColor GUIButton::getOverrideColor() const return OverrideColor;
}
-#if IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR > 8
video::SColor GUIButton::getActiveColor() const
{
return video::SColor(0,0,0,0); // unused?
}
-#endif
void GUIButton::enableOverrideColor(bool enable)
{
|