diff options
author | number Zero <numzer0@yandex.ru> | 2018-11-05 14:56:12 +0300 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2018-11-11 18:08:15 +0100 |
commit | d90e3ea88d3073a5dd0094937216aea0b35c1ce4 (patch) | |
tree | 13648d22055b4ffaa78d669ac971b911c639f364 /src/irrlicht_changes | |
parent | 6c42ebfafa7bc5762fe7ad64b4b9087ba1bc3c38 (diff) | |
download | minetest-d90e3ea88d3073a5dd0094937216aea0b35c1ce4.tar.gz minetest-d90e3ea88d3073a5dd0094937216aea0b35c1ce4.tar.bz2 minetest-d90e3ea88d3073a5dd0094937216aea0b35c1ce4.zip |
Drop .NET-specific workaround: _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX
Diffstat (limited to 'src/irrlicht_changes')
-rw-r--r-- | src/irrlicht_changes/static_text.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/irrlicht_changes/static_text.cpp b/src/irrlicht_changes/static_text.cpp index 455dbf437..ed1655e0a 100644 --- a/src/irrlicht_changes/static_text.cpp +++ b/src/irrlicht_changes/static_text.cpp @@ -15,10 +15,6 @@ #if USE_FREETYPE #include "CGUITTFont.h" #endif -#ifndef _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX - // newer Irrlicht versions no longer have this - #define _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX -#endif #include "util/string.h" @@ -236,7 +232,6 @@ video::SColor StaticText::getBackgroundColor() const //! Checks if background drawing is enabled bool StaticText::isDrawBackgroundEnabled() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return Background; } @@ -251,7 +246,6 @@ void StaticText::setDrawBorder(bool draw) //! Checks if border drawing is enabled bool StaticText::isDrawBorderEnabled() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return Border; } @@ -295,7 +289,6 @@ void StaticText::enableOverrideColor(bool enable) bool StaticText::isOverrideColorEnabled() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return OverrideColorEnabled; } @@ -311,7 +304,6 @@ void StaticText::setWordWrap(bool enable) bool StaticText::isWordWrapEnabled() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return WordWrap; } |