From 3a6546f47178357000ec3d307e722741af20543d Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Mon, 30 May 2022 12:32:34 -0700 Subject: [PATCH] [REVERT LATER] separate mainline replays with monthly folder --- Source/Core/Core/HW/EXI/EXI_DeviceSlippi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceSlippi.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceSlippi.cpp index 8f8a24bfb3..209796a6a3 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceSlippi.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceSlippi.cpp @@ -566,9 +566,9 @@ void CEXISlippi::createNewFile() dirpath.push_back('/'); // Append YYYY-MM to the directory path - uint8_t yearMonthStrLength = sizeof "2020-06"; + uint8_t yearMonthStrLength = sizeof "2020-06-Mainline"; std::vector yearMonthBuf(yearMonthStrLength); - strftime(&yearMonthBuf[0], yearMonthStrLength, "%Y-%m", localtime(&gameStartTime)); + strftime(&yearMonthBuf[0], yearMonthStrLength, "%Y-%m-Mainline", localtime(&gameStartTime)); std::string yearMonth(&yearMonthBuf[0]); dirpath.append(yearMonth);