From 56368c0fd401497ed05bd1eee17e9b3dd650abe6 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Fri, 7 Aug 2026 18:36:58 +0800 Subject: [PATCH] newline in debug (+1 squashed commits) Squashed commits: [dbc58568d] newline in debug --- otherarch/sdcpp/sdtype_adapter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otherarch/sdcpp/sdtype_adapter.cpp b/otherarch/sdcpp/sdtype_adapter.cpp index d14de6c78..928350a6c 100644 --- a/otherarch/sdcpp/sdtype_adapter.cpp +++ b/otherarch/sdcpp/sdtype_adapter.cpp @@ -319,7 +319,7 @@ static void progress_callback(int step, int steps, float time, void* data) { printf("\n"); } - printf("\rGenerating image: %d/%d steps, %.2f %s\033[K%s", step, steps, speed, unit, step == steps ? "\n" : ""); + printf("\rGenerating image: %d/%d steps, %.2f %s\033[K%s", step, steps, speed, unit, (step == steps || sddebugmode==1) ? "\n" : ""); fflush(stdout); }