Search found 3 matches
- Thu Jun 23, 2011 8:07 am
- Forum: Project Announcements
- Topic: Irrlicht i18n (Unicode, FreeType, etc.)
- Replies: 178
- Views: 122038
Re: Avoid compile warning of irrUString
That patch causes issues if you don't integrate it with Irrlicht. The normal method of using CGUITTFont is to integrate it into your project instead of into Irrlicht, so I won't apply that patch. Unless you can figure out some way to prevent IRRLICHT_API from being defined when you add the code to ...
- Sat Jun 18, 2011 3:34 am
- Forum: Project Announcements
- Topic: Irrlicht i18n (Unicode, FreeType, etc.)
- Replies: 178
- Views: 122038
Avoid compile warning of irrUString
In irrUString.h, there are some compiler warning. That's occured converted _int64 to u32. e.g. _Iter& operator+=(const difference_type v) { if (v == 0) return *this; if (v < 0) return operator-=(v * -1); if (pos >= ref->size_raw()) return *this; // Go to the appropriate position. u32 i = (u32)v;...
- Sat Jun 18, 2011 3:28 am
- Forum: Project Announcements
- Topic: Irrlicht i18n (Unicode, FreeType, etc.)
- Replies: 178
- Views: 122038
Nice work!!
Nice work! Many thanks!! Here is a patch can fix linker error if built in Irrlicht. //! Class representing a TrueType font. class CGUITTFont : public IGUIFont { public: //! Creates a new TrueType font and returns a pointer to it. The pointer must be drop()'ed when finished. //! \param env The IGUIEn...