Changed commandline flag to render in 32bit float from -32 to -a

This commit is contained in:
Dave French
2015-01-29 11:36:21 +00:00
parent 406bc40ddd
commit 1ebbe31fae

View File

@@ -191,7 +191,7 @@ int main( int argc, char * * argv )
"-x, --oversampling <value> specify oversampling\n"
" possible values: 1, 2, 4, 8\n"
" default: 2\n"
"-32, --float 32bit float bit depth\n"
"-a, --float 32bit float bit depth\n"
"-u, --upgrade <in> [out] upgrade file <in> and save as <out>\n"
" standard out is used if no output file is specifed\n"
"-d, --dump <in> dump XML of compressed file <in>\n"
@@ -299,7 +299,7 @@ int main( int argc, char * * argv )
}
else if ( argc > i &&
( QString( argv[i] ) =="--float" ||
QString( argv[i] ) == "-32" ) )
QString( argv[i] ) == "-a" ) )
{
os.depth = ProjectRenderer::Depth_32Bit;
}