mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Common: Convert FromWhichRoot to enum class
This commit is contained in:
@ -10,10 +10,10 @@
|
||||
|
||||
namespace Common
|
||||
{
|
||||
enum FromWhichRoot
|
||||
enum class FromWhichRoot
|
||||
{
|
||||
FROM_CONFIGURED_ROOT, // not related to currently running game - use D_WIIROOT_IDX
|
||||
FROM_SESSION_ROOT, // request from currently running game - use D_SESSION_WIIROOT_IDX
|
||||
Configured, // not related to currently running game - use D_WIIROOT_IDX
|
||||
Session, // request from currently running game - use D_SESSION_WIIROOT_IDX
|
||||
};
|
||||
|
||||
std::string RootUserPath(FromWhichRoot from);
|
||||
|
Reference in New Issue
Block a user