Fix erroneous syntax (unmatched paren)

This commit is contained in:
Ryan Huffman 2018-03-05 12:03:15 -08:00
parent ac0ecc8baa
commit 842d5cdb39

View file

@ -218,7 +218,7 @@ void ModelBakeWidget::bakeButtonClicked() {
baker.reset(new OBJBaker(modelToBakeURL, getWorkerThreadCallback, bakedOutputDirectory.absolutePath(), baker.reset(new OBJBaker(modelToBakeURL, getWorkerThreadCallback, bakedOutputDirectory.absolutePath(),
originalOutputDirectory.absolutePath())); originalOutputDirectory.absolutePath()));
} else { } else {
qWarning() << "Unknown model type: " << modelToBakeURL.fileName()); qWarning() << "Unknown model type: " << modelToBakeURL.fileName();
continue; continue;
} }