Page 1 of 1

Only runs in debug mode.

Posted: Thu Aug 28, 2008 14:31
by warwick1591
Hi,

So i have some code that pritty much creates a Irrlicht render with a irrlicht device that i have create

Code: Select all

IrrlichtDevice* device = createDevice(video::EDT_OPENGL, dimension2d<s32>(800, 600), 32,
         false, false, false, 0);
device->setWindowCaption(L"Test");

   IVideoDriver* driver = device->getVideoDriver();
   ISceneManager* smgr = device->getSceneManager();

It crashes on

Code: Select all

renderer = new IrrlichtRenderer(device, false);
      new System(renderer);


My problem is it crashes only when i DONT run it in debug mode. It compiles fine and everything. Know of a reason why it would be doing this?
Im using VS9 with irrlicht 1.4.1 and CEGUIs VS9 prebuilt package

Posted: Thu Aug 28, 2008 15:56
by Jamarr
First, I have no experience with Irrlicht.

Now, does it crash when you create the Renderer, or the System object? You didn't specify. Also, the System object can throw exceptions from the constructor, you should put a try/catch block around it. Is there anything in your CEGUI.log file, or is it not created yet? Have you tried comparing/tweaking the differences between the compiler/linker settings for Release vs Debug builds? It's very possible that a particular setting works in Debug but not Release, such as 'Struct Alignment', etc.

Posted: Fri Aug 29, 2008 13:26
by Progger
My advice would be to compare the debug and release configuration DLLs in their release date since I had the same problem as I forgot to update the latest CUGUI release DLLs.
I hope it would help :wink:

Posted: Mon Sep 01, 2008 08:46
by CrazyEddie
Not sure if it's important, but I think the prebuilt CEGUI libs were against Irrlicht 1.4(.0), so if there are binary breaks in the 1.4.1 update that might cause issues (I've not checked, so I don't know, but it's something to consider) - in which case you'd need to rebuild CEGUI against the updated Irrlicht.

CE.