Update fusee_display.cpp - add missing newline

Add newline that would otherwise cause text concatenation when it comes to suggestedFix content being appended.
This commit is contained in:
Kane 2026-01-01 23:16:38 +13:00 committed by GitHub
parent 21c0f75a29
commit cd72f9f33e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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());
}