Quote:
Originally Posted by Paul Riley
Obviously the res fix is the culprit here after a bit of reading on the matter.It seems I may not have a valid directory path for the screenshots to be placed in.Opening up the d3d9.cfg I get -
enableScreenshots=1
screenshotPath=. <-- there really is a full stop after the equals sign.
So,can someone give me a valid directory to save the shots to,like my documents for example?,would that work?
If all else fails is it safe to remove the res fix and revert back to the original GWX3 setup? its ok modding our games but my experience is teaching me that we can do it TOO much eventually breaking a once stable game  
|
The dot is a perfectly valid path. It means "Current directory" to the system.
It comes from Unix where . means = current directory
and .. = the directory above
ex. you can copy a file by doing :
cd c:\toto
copy c:\somefile .
This copies file somefile located in c:\toto to the current directory (the .)
That's why you see a . and .. when you do a dir
Or a ls on a Unix machine running Linux or BSD.