Hard Light Productions Forums

Modding, Mission Design, and Coding => FS2 Open Coding - The Source Code Project (SCP) => Topic started by: Bobboau on December 01, 2002, 02:14:41 am

Title: weird compile warning
Post by: Bobboau on December 01, 2002, 02:14:41 am
debug\fs2_open_debug.exe : warning LNK4084: total image size 449175552 exceeds max (268435456); image may not run

what the hell does this mean, and why did it suddenly just show up
Title: weird compile warning
Post by: Alikchi on December 01, 2002, 02:59:23 am
that sounds like trouble!
Title: weird compile warning
Post by: Zarax on December 01, 2002, 04:39:41 am
You may have broken a limit of something, maybe a memory setting...
It's set to 256MB, so it could be either file size or memory allocation.
Title: weird compile warning
Post by: Bobboau on December 01, 2002, 05:56:06 am
I did some looking looks like I have too many/large arrays, I was useing oversized arrays tohelp keep me from over running them, and I had a few structurs laying around were I don't need them any more, so I get and array of 3500 verts(3 floats) * max number of ships * max number of subobjects
ect...

I just have to clean stuff up when I get done
remind me to check google before posting stupid questions, not emediatly after.