Originally posted by Goober5000
Okay, I finally got the thing downloaded and loaded up in MSVC6.0. Huge daunting mess of code...
I hit Rebuild All and the thing started chugging away, but then I got a bunch of errors...
I assume you guys know about these. Are they bugs in the code, or am I using the wrong configuration? I'm nervous about those "undeclared" and "unreferenced" messages...
edit: looking into it, seems SEXP is broken. looking into it.
ignore the warnings regarding timerbar, and lvp*** something
unrefenrenced means it is being setup to be used, but never used. in other words, not a bug, but bad habits from some programmers.
but it seems someone forgot a keyword seperator, the ";" sign, that can really goof up things.
edit2
error identified
someone forgot a {
at line 6785 in SEXP.cpp
if(ship_is_tagged(caller))
that should be
if(ship_is_tagged(caller)) {
Fixed, and commiting now, Goober5000, you need to down SEXP.cpp again, or in other words checkout from wincvs or whatever cvs program you use.
thx for the report.