From cd72f9f33ee1d478160aecb73be0f614f4f96e2d Mon Sep 17 00:00:00 2001 From: Kane <69925158+HydrationMan@users.noreply.github.com> Date: Thu, 1 Jan 2026 23:16:38 +1300 Subject: [PATCH] Update fusee_display.cpp - add missing newline Add newline that would otherwise cause text concatenation when it comes to suggestedFix content being appended. --- fusee/program/source/fusee_display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fusee/program/source/fusee_display.cpp b/fusee/program/source/fusee_display.cpp index 4e5ade795..6defdf050 100644 --- a/fusee/program/source/fusee_display.cpp +++ b/fusee/program/source/fusee_display.cpp @@ -602,7 +602,7 @@ namespace ams::nxboot { Print("\n"); if (R_SUCCEEDED(save_result)) { - Print("Report saved to /atmosphere/fatal_errors/report_%016" PRIx64 ".bin", f_ctx->report_identifier); + Print("Report saved to /atmosphere/fatal_errors/report_%016" PRIx64 ".bin\n", f_ctx->report_identifier); } else { Print("Failed to save report to the SD card! (%08" PRIx32 ")\n", save_result.GetValue()); }