default monthly folders on

This commit is contained in:
Nikhil Narayana 2022-05-30 01:19:15 -07:00
commit 77caeb32fb
2 changed files with 2 additions and 2 deletions

View file

@ -550,7 +550,7 @@ void SConfig::LoadSlippiSettings(IniFile& ini)
slippi->Get("OnlineDelay", &m_slippiOnlineDelay, 2);
slippi->Get("SaveReplays", &m_slippiSaveReplays, true);
slippi->Get("EnableQuickChat", &m_slippiEnableQuickChat, true);
slippi->Get("ReplayMonthFolders", &m_slippiReplayMonthFolders, false);
slippi->Get("ReplayMonthFolders", &m_slippiReplayMonthFolders, true);
std::string default_replay_dir = File::GetHomeDirectory() + DIR_SEP + "Slippi";
slippi->Get("ReplayDir", &m_strSlippiReplayDir, default_replay_dir);
if (m_strSlippiReplayDir.empty())

View file

@ -170,7 +170,7 @@ struct SConfig
bool m_slippiEnableSeek = true;
bool m_slippiSaveReplays = true;
bool m_slippiEnableQuickChat = true;
bool m_slippiReplayMonthFolders = false;
bool m_slippiReplayMonthFolders = true;
std::string m_strSlippiReplayDir;
bool m_blockingPipes = false;
bool m_slippiForceNetplayPort = false;