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);