diff options
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; } |