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
master
hybrid 2009-08-13 17:17:37 +00:00
parent af952595c6
commit 6acdce5021
3 changed files with 7 additions and 1 deletions

View File

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

View File

@ -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.

View File

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