From 42089f228277642d041fefb2efedfe3cc5176af7 Mon Sep 17 00:00:00 2001 From: Marco De Lucia Date: Tue, 11 Jun 2024 18:45:40 +0200 Subject: [PATCH] fixed initializer. Format is given by extension in the `-o` argument --- src/poet.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/poet.cpp b/src/poet.cpp index f2ccbd4e1..83ede5510 100644 --- a/src/poet.cpp +++ b/src/poet.cpp @@ -156,10 +156,9 @@ ParseRet parseInitValues(char **argv, RuntimeParameters ¶ms) { params.use_ai_surrogate = cmdl["ai-surrogate"]; - // MDL: optional flag "qs" to switch to qsave() + // MDL: optional flag "--qs" to switch to qsave() params.out_ext = "rds"; if (cmdl["qs"]) { - MSG("Enabled output"); params.out_ext = "qs"; }