From 84bcaf8dc62e4bd711ef5cbfb53851d4fcf7df0a Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sun, 29 Jul 2018 16:48:33 -0700 Subject: [PATCH] creport: Change report path to crash_reports --- stratosphere/creport/source/creport_crash_report.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/creport/source/creport_crash_report.cpp b/stratosphere/creport/source/creport_crash_report.cpp index cf396ecc5..abf2e0233 100644 --- a/stratosphere/creport/source/creport_crash_report.cpp +++ b/stratosphere/creport/source/creport_crash_report.cpp @@ -206,7 +206,7 @@ void CrashReport::EnsureReportDirectories() { char path[FS_MAX_PATH]; strcpy(path, "sdmc:/atmosphere"); mkdir(path, S_IRWXU); - strcat(path, "/crash reports"); + strcat(path, "/crash_reports"); mkdir(path, S_IRWXU); strcat(path, "/dumps"); mkdir(path, S_IRWXU);