From 5a748bdefefad79eba308fb032bacb6bfa0880ee Mon Sep 17 00:00:00 2001 From: ponchio Date: Mon, 26 Sep 2022 01:05:58 +0200 Subject: [PATCH] fixed tarzoom wrong folder bug. --- relight/rtitask.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relight/rtitask.cpp b/relight/rtitask.cpp index fd2d0695..d1d703b6 100644 --- a/relight/rtitask.cpp +++ b/relight/rtitask.cpp @@ -41,7 +41,7 @@ void RtiTask::run() { fromRTI(); //TODO! deepZOOM should set error and status? else if(step == "deepzoom") { - if ((err = deepZoom(input_folder, output, 95, 0, 256, callback)).compare("OK") != 0) { + if ((err = deepZoom(output, output, 95, 0, 256, callback)).compare("OK") != 0) { error = err; status = FAILED; }