Skip to content

Commit

Permalink
Minor changes for IrrLicht 1.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
numberZero authored and sfan5 committed Nov 11, 2018
1 parent 4f9c33d commit b786982
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/gui/intlGUIEditBox.cpp
Expand Up @@ -32,8 +32,6 @@
#include <util/numeric.h>
#include "intlGUIEditBox.h"

#if defined(_IRR_COMPILE_WITH_GUI_) && IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR < 9 || defined(__ANDROID__)

#include "IGUISkin.h"
#include "IGUIEnvironment.h"
#include "IGUIFont.h"
Expand Down Expand Up @@ -1591,5 +1589,3 @@ void intlGUIEditBox::deserializeAttributes(io::IAttributes* in, io::SAttributeRe

} // end namespace gui
} // end namespace irr

#endif // _IRR_COMPILE_WITH_GUI_
15 changes: 15 additions & 0 deletions src/irrlichttypes.h
Expand Up @@ -31,9 +31,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#endif

#include <irrTypes.h>
#include <irrMath.h>

using namespace irr;

namespace irr {

// Irrlicht 1.8+ defines 64bit unsigned symbol in irrTypes.h
#if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR < 8)
#ifdef _MSC_VER
Expand All @@ -47,6 +50,18 @@ using namespace irr;
#endif
#endif

#if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR >= 9)
namespace core {
template <>
inline s16 roundingError()
{
return 0;
}
}
#endif

}

#define S8_MIN (-0x7F - 1)
#define S16_MIN (-0x7FFF - 1)
#define S32_MIN (-0x7FFFFFFF - 1)
Expand Down

0 comments on commit b786982

Please sign in to comment.