Hi Elspin,
I've moved the discussion for this to
http://forum.thegamecreators.com/?m=forum_view&t=129759&b=5
Do you have version 1.0? Follow that link to be sure. From where you say it's blowing up, I think it might be the default screen size which is adjustable...
To make a global change to the default screen mode, size and depth... open
jgc_daddy.cpp and start looking at line 54. You should see a section of code like this:
//============================================================================
// Begin JGC_DADDY
//============================================================================
//----------------------------------------------------------------------------
JGC_DADDY::JGC_DADDY(){
//----------------------------------------------------------------------------
dbFlushVideoMemory();
this->pvt_Initialized =false;
D_DisplayWidth=1024;
D_DisplayHeight=768;
D_DisplayDepth=32;
D_DisplayWindowed=true;
D_DisplayWindowPosX=0;
D_DisplayWindowPosY=0;
D_UserInput_MouseDelayInMilliSec=50;
D_Camera_Range_Near=0.01f;
D_Camera_Range_Far=100;
D_Camera_BackColor_Red=0;
D_Camera_BackColor_Green=0;
D_Camera_BackColor_Blue=255;
};
//----------------------------------------------------------------------------
See if chagning these values helps... but you might need to debug where its stopping on your machine. I have seen ONE VISTA machine choke on a memblock command that worked fine on XP and other vista machines.
Report back, and I'll try to get you through this. I assure you the code is good - something specific to your pc is probably not liking it for some reason or another.
Don't give up - Hang in there I'll try to get this thing going for you!
Best Regards,
Jason