mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 16:18:58 +00:00
Log: Rename IOS_FILEIO to IOS_FS
Let's use the actual name of the system module. Also, the FS code is not all about files.
This commit is contained in:
parent
5a7b966b6d
commit
de15e09a4f
4 changed files with 30 additions and 33 deletions
|
@ -57,12 +57,11 @@ void InitializeWiiRoot(bool use_temporary)
|
|||
s_temp_wii_root = File::CreateTempDir();
|
||||
if (s_temp_wii_root.empty())
|
||||
{
|
||||
ERROR_LOG(IOS_FILEIO, "Could not create temporary directory");
|
||||
ERROR_LOG(IOS_FS, "Could not create temporary directory");
|
||||
return;
|
||||
}
|
||||
File::CopyDir(File::GetSysDirectory() + WII_USER_DIR, s_temp_wii_root);
|
||||
WARN_LOG(IOS_FILEIO, "Using temporary directory %s for minimal Wii FS",
|
||||
s_temp_wii_root.c_str());
|
||||
WARN_LOG(IOS_FS, "Using temporary directory %s for minimal Wii FS", s_temp_wii_root.c_str());
|
||||
File::SetUserPath(D_SESSION_WIIROOT_IDX, s_temp_wii_root);
|
||||
// Generate a SYSCONF with default settings for the temporary Wii NAND.
|
||||
SysConf sysconf{Common::FromWhichRoot::FROM_SESSION_ROOT};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue