diff --git a/apps/OpenSpace/main.cpp b/apps/OpenSpace/main.cpp index 34f777756c..75e9e892cb 100644 --- a/apps/OpenSpace/main.cpp +++ b/apps/OpenSpace/main.cpp @@ -309,11 +309,10 @@ void mainInitFunc() { std::tm* nowTime = std::localtime(&now); char mbstr[128]; strftime(mbstr, sizeof(mbstr), "%Y-%m-%d-%H-%M", nowTime); - screenshotPath += "/" + std::string(mbstr); FileSys.registerPathToken( "${SCREENSHOTS}", - absPath(screenshotPath), + absPath(screenshotPath + '/' + std::string(mbstr)), ghoul::filesystem::FileSystem::Override::Yes ); } diff --git a/ext/ghoul b/ext/ghoul index aa95228919..94acf4c2d4 160000 --- a/ext/ghoul +++ b/ext/ghoul @@ -1 +1 @@ -Subproject commit aa95228919e2f72395cc895415f262ba88edd5e9 +Subproject commit 94acf4c2d4d73079329849e135d9b86b7ee3b390 diff --git a/ext/sgct b/ext/sgct index 6a344742d7..7037d71a8c 160000 --- a/ext/sgct +++ b/ext/sgct @@ -1 +1 @@ -Subproject commit 6a344742d7267d0966d381197c15e34e1afcf275 +Subproject commit 7037d71a8c34f5bbe98577260040a349cda4b7b9 diff --git a/src/util/httprequest.cpp b/src/util/httprequest.cpp index ca521ddb47..e49a652429 100644 --- a/src/util/httprequest.cpp +++ b/src/util/httprequest.cpp @@ -219,7 +219,7 @@ void SyncHttpDownload::download(HttpRequest::RequestOptions opt) { }); _httpRequest.perform(opt); deinitDownload(); - + LTRACE(fmt::format("End sync download '{}'", _httpRequest.url())); }