From 1ebbe31fae4bec778c56cfe5e4a1396d97b0d457 Mon Sep 17 00:00:00 2001 From: Dave French Date: Thu, 29 Jan 2015 11:36:21 +0000 Subject: [PATCH] Changed commandline flag to render in 32bit float from -32 to -a --- src/core/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/main.cpp b/src/core/main.cpp index 6bdd1e3c9..a489323fb 100644 --- a/src/core/main.cpp +++ b/src/core/main.cpp @@ -191,7 +191,7 @@ int main( int argc, char * * argv ) "-x, --oversampling 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 [out] upgrade file and save as \n" " standard out is used if no output file is specifed\n" "-d, --dump dump XML of compressed file \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; }