Sample 5 bug with 0.4.2 fix

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Battlestations
Posts: 10
Joined: Sun Jan 18, 2004 10:46 pm
Location: USA
Contact:

Sample 5 bug with 0.4.2 fix

Post by Battlestations »

I was trying to get Sample 5 to compile with the 0.4.2 code. Well any way the line that keeps giving me problems in sample 5 is this..

Code: Select all

IGUIWindow* window = env->addWindow(rect<s32>(100 + cnt, 100 + cnt, 300 + cnt, 200 + cnt), 0, -1, L"Test window");
should be for 0.4.2

Code: Select all

	IGUIWindow *window = env->addWindow( core::rect< s32 >( 100 + cnt, 100 + cnt, 300 + cnt, 200 + cnt), false, L"Mywindow", 0, -1); 
Post Reply