mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Core: Make format of D_WIIROOT_IDX consistent with the rest of the user directories.
This commit is contained in:
@ -19,7 +19,9 @@ namespace Common
|
||||
std::string RootUserPath(FromWhichRoot from)
|
||||
{
|
||||
int idx = from == FROM_CONFIGURED_ROOT ? D_WIIROOT_IDX : D_SESSION_WIIROOT_IDX;
|
||||
return File::GetUserPath(idx);
|
||||
std::string dir = File::GetUserPath(idx);
|
||||
dir.pop_back(); // remove trailing path separator
|
||||
return dir;
|
||||
}
|
||||
|
||||
static std::string RootUserPath(std::optional<FromWhichRoot> from)
|
||||
|
Reference in New Issue
Block a user