mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-22 10:19:01 +00:00
MONTH_FOLDERS -> MONTHLY_FOLDERS
This commit is contained in:
parent
639fd6298e
commit
106327827a
3 changed files with 3 additions and 3 deletions
|
@ -44,7 +44,7 @@ const Info<bool> SLIPPI_FORCE_NETPLAY_PORT{{System::Main, "Slippi", "ForceNetpla
|
||||||
const Info<u32> SLIPPI_NETPLAY_PORT{{System::Main, "Slippi", "NetplayPort"}, 2626};
|
const Info<u32> SLIPPI_NETPLAY_PORT{{System::Main, "Slippi", "NetplayPort"}, 2626};
|
||||||
const Info<bool> SLIPPI_FORCE_LAN_IP{{System::Main, "Slippi", "ForceLanIP"}, false};
|
const Info<bool> SLIPPI_FORCE_LAN_IP{{System::Main, "Slippi", "ForceLanIP"}, false};
|
||||||
const Info<std::string> SLIPPI_LAN_IP{{System::Main, "Slippi", "LanIP"}, ""};
|
const Info<std::string> SLIPPI_LAN_IP{{System::Main, "Slippi", "LanIP"}, ""};
|
||||||
const Info<bool> SLIPPI_REPLAY_MONTH_FOLDERS{{System::Main, "Slippi", "ReplayMonthFolders"}, true};
|
const Info<bool> SLIPPI_REPLAY_MONTHLY_FOLDERS{{System::Main, "Slippi", "ReplayMonthlyFolders"}, true};
|
||||||
const Info<std::string> SLIPPI_REPLAY_DIR{{System::Main, "Slippi", "ReplayDir"},
|
const Info<std::string> SLIPPI_REPLAY_DIR{{System::Main, "Slippi", "ReplayDir"},
|
||||||
File::GetHomeDirectory() + DIR_SEP + "Slippi"};
|
File::GetHomeDirectory() + DIR_SEP + "Slippi"};
|
||||||
const Info<bool> SLIPPI_ENABLE_FRAME_INDEX{{System::Main, "Slippi", "EnableFrameIndex"}, false};
|
const Info<bool> SLIPPI_ENABLE_FRAME_INDEX{{System::Main, "Slippi", "EnableFrameIndex"}, false};
|
||||||
|
|
|
@ -63,7 +63,7 @@ extern const Info<bool> SLIPPI_FORCE_NETPLAY_PORT;
|
||||||
extern const Info<u32> SLIPPI_NETPLAY_PORT;
|
extern const Info<u32> SLIPPI_NETPLAY_PORT;
|
||||||
extern const Info<bool> SLIPPI_FORCE_LAN_IP;
|
extern const Info<bool> SLIPPI_FORCE_LAN_IP;
|
||||||
extern const Info<std::string> SLIPPI_LAN_IP;
|
extern const Info<std::string> SLIPPI_LAN_IP;
|
||||||
extern const Info<bool> SLIPPI_REPLAY_MONTH_FOLDERS;
|
extern const Info<bool> SLIPPI_REPLAY_MONTHLY_FOLDERS;
|
||||||
extern const Info<std::string> SLIPPI_REPLAY_DIR;
|
extern const Info<std::string> SLIPPI_REPLAY_DIR;
|
||||||
extern const Info<bool> SLIPPI_ENABLE_FRAME_INDEX;
|
extern const Info<bool> SLIPPI_ENABLE_FRAME_INDEX;
|
||||||
extern const Info<bool> SLIPPI_BLOCKING_PIPES;
|
extern const Info<bool> SLIPPI_BLOCKING_PIPES;
|
||||||
|
|
|
@ -604,7 +604,7 @@ void CEXISlippi::createNewFile()
|
||||||
|
|
||||||
// Now we have a dir such as /home/Replays but we need to make one such
|
// Now we have a dir such as /home/Replays but we need to make one such
|
||||||
// as /home/Replays/2020-06 if month categorization is enabled
|
// as /home/Replays/2020-06 if month categorization is enabled
|
||||||
if (Config::Get(Config::SLIPPI_REPLAY_MONTH_FOLDERS))
|
if (Config::Get(Config::SLIPPI_REPLAY_MONTHLY_FOLDERS))
|
||||||
{
|
{
|
||||||
dirpath.push_back('/');
|
dirpath.push_back('/');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue