Topic: Problem Building Irrlicht 0.14.0.

When I build my game with the updated mod, Max returns "Compile Error: Unable to convert from 'Int' to 'T_irrIGUIElement".
Here is the line returning the error.
gui.addButton(T_irrRect_s32.createFromVals(10,210,100,240), 0, 101, "File Open")

What could I be doing wrong?
Thank you.

Re: Problem Building Irrlicht 0.14.0.

greetings smile  with the new strict settings 0 is no longer acceptable as Null for an object.  try changing your code to:

gui.addButton(T_irrRect_s32.createFromVals(10,210,100,240), Null, 101, "File Open")

HTH