Browse Source

sceneconverter: fix compact output for --info-images.

Sigh, I really need Utility::System::exec() with output redirection to
regression-test the utilities, this isn't good.
pull/539/head
Vladimír Vondruš 4 years ago
parent
commit
7bc62bb274
  1. 2
      src/Magnum/SceneTools/sceneconverter.cpp

2
src/Magnum/SceneTools/sceneconverter.cpp

@ -711,7 +711,7 @@ used.)")
/* In case the images have all just a single level and no names, write
them in a compact way without listing levels. */
bool compactImages = false;
bool compactImages = true;
Containers::Array<Trade::Implementation::ImageInfo> imageInfos;
if(args.isSet("info") || args.isSet("info-images")) {
imageInfos = Trade::Implementation::imageInfo(*importer, error, compactImages, importTime);

Loading…
Cancel
Save