Well, I have the patch for it but I don't know where to post this. Patch tracker at SF or hybrid's site?

(click here for full size)

Code: Select all
SIrrlichtCreationParameters params;
Display* pDisplay = ...; // set this to the display
Window winID = ...; // set this to your window id
core::stringc winDesc = (long)pDisplay;
winDesc += ':';
winDesc += (int)winID;
params.WindowId = (long)winDesc.c_str();
params.DriverType = EDT_OPENGL;
irr::IrrlichtDevice* pDevice = createDeviceEx(params);