1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Drop .NET-specific workaround: _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX

This commit is contained in:
number Zero 2018-11-05 14:56:12 +03:00 committed by sfan5
parent 6c42ebfafa
commit d90e3ea88d
3 changed files with 0 additions and 18 deletions

View file

@ -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;
}