Commit 6acdce50 authored by hybrid's avatar hybrid

Add missing COUNT enum. Add FLT_MAX define if missing.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2601 dfc29bdd-3216-0410-991c-e03cc46cb475
parent af952595
......@@ -229,6 +229,8 @@ namespace irr
//! A tree view node was collapsed. See IGUITreeView::getLastEventNode().
EGET_TREEVIEW_NODE_COLLAPS,
//! No real event. Just for convenience to get number of events
EGET_COUNT
};
} // end namespace gui
......
......@@ -122,7 +122,7 @@ namespace irr
again by the user.
The value is the maximal antialiasing factor requested for
the device. The cretion method will automatically try smaller
values if no window can be created with the diven value.
values if no window can be created with the given value.
Value one is usually the same as 0 (disabled), but might be a
special value on some platforms. On D3D devices it maps to
NONMASKABLE.
......
......@@ -25,6 +25,10 @@
#define logf(X) (f32)log((f64)(X))
#endif
#ifndef FLT_MAX
#define FLT_MAX 3.402823466E+38F
#endif
namespace irr
{
namespace core
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment