grendizerufo / nvidia-texture-tools

Automatically exported from code.google.com/p/nvidia-texture-tools
Other
0 stars 0 forks source link

process return code #92

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What version of the product are you using? 
2.0.6

Please provide any additional information below.
now:

int main() { 
...
    compressor.process(inputOptions, compressionOptions, outputOptions);
}} }

Should be:
int main()
{
    if (!compressor.process(inputOptions, compressionOptions, outputOptions))
         return 1;
}

Original issue reported on code.google.com by Dobro...@gmail.com on 23 Mar 2009 at 3:09

GoogleCodeExporter commented 9 years ago
This is fixed now in the 2.0 branch and trunk. The fix will be in the upcoming 
2.0.7
release.

Original comment by cast...@gmail.com on 13 Jun 2009 at 2:14