Where is this file? "tclap/CmdLine.h"
I need it to tweak with the MapConv program to create a large map. Or at least to debug it, getting out of memory errors when trying to create a large map for SJ.
-Buggi
missing #include "tclap/CmdLine.h"
Moderator: Moderators
Downloaded and now compiling..
I did have an issue with the std::min() funtion, oddly the compiler didn't like that, so I converted it to a simply ternary operator... like so
Now I can see about creating that map.. @.@; To beyond 16kx16k... not sure why smoth gave me those dimensions.
I did have an issue with the std::min() funtion, oddly the compiler didn't like that, so I converted it to a simply ternary operator... like so
Code: Select all
int stringLen = len-start > allowedLen ? len-start : allowedLen;