fs: added /download0 mount

fs: get rid of double slashes
This commit is contained in:
raziel1000 2024-07-26 08:07:22 -06:00
parent 2841eba538
commit 600a13c38f
4 changed files with 23 additions and 9 deletions

View file

@ -18,6 +18,7 @@ enum class PathType {
TempDataDir, // Where game temp data is stored.
GameDataDir, // Where game data is stored.
SysModuleDir, // Where system modules are stored.
DownloadDir, // Where downloads/temp files are stored.
};
constexpr auto PORTABLE_DIR = "user";
@ -31,6 +32,7 @@ constexpr auto SAVEDATA_DIR = "savedata";
constexpr auto GAMEDATA_DIR = "data";
constexpr auto TEMPDATA_DIR = "temp";
constexpr auto SYSMODULES_DIR = "sys_modules";
constexpr auto DOWNLOAD_DIR = "download";
// Filenames
constexpr auto LOG_FILE = "shad_log.txt";