summaryrefslogtreecommitdiff
path: root/src/irrlicht_changes
diff options
context:
space:
mode:
authornumber Zero <numzer0@yandex.ru>2018-11-05 14:56:12 +0300
committersfan5 <sfan5@live.de>2018-11-11 18:08:15 +0100
commitd90e3ea88d3073a5dd0094937216aea0b35c1ce4 (patch)
tree13648d22055b4ffaa78d669ac971b911c639f364 /src/irrlicht_changes
parent6c42ebfafa7bc5762fe7ad64b4b9087ba1bc3c38 (diff)
downloadminetest-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.cpp8
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;
}