From 133411c3fd0871eb37978245880c13a77b2fbb66 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sat, 25 Jul 2026 19:06:56 +0800 Subject: [PATCH] fixed incorrect line removal --- 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 95926ace3..0542c03bb 100644 --- a/otherarch/sdcpp/sdtype_adapter.cpp +++ b/otherarch/sdcpp/sdtype_adapter.cpp @@ -1261,7 +1261,7 @@ sd_generation_outputs sdtype_generate(const sd_generation_inputs inputs) params.negative_prompt = sd_params->negative_prompt.c_str(); params.clip_skip = sd_params->clip_skip; params.sample_params.guidance.txt_cfg = sd_params->cfg_scale; - params.sample_params.guidance.img_cfg = sd_params->cfg_scale; //removed, breaks qwen img edit and more + // params.sample_params.guidance.img_cfg = sd_params->cfg_scale; //removed, breaks qwen img edit and more if (sd_params->distilled_guidance >= 0.f) { params.sample_params.guidance.distilled_guidance = sd_params->distilled_guidance; }