diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-01-28 11:44:35 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-01-28 11:44:37 -0500 |
| commit | cb2ce9924a6ac65cebc0ebe1014cf6eb459506e5 (patch) | |
| tree | bd6fcb47060f5ceb241108be3593f0ee12070446 /src/core/hle/service/pm/pm.h | |
| parent | 72c48e01c97f7f94c63176838525909731d1aa9a (diff) | |
service/pm: Tidy up functionality related to SystemBootMode
Just minor tidying of interfaces.
Diffstat (limited to 'src/core/hle/service/pm/pm.h')
| -rw-r--r-- | src/core/hle/service/pm/pm.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/hle/service/pm/pm.h b/src/core/hle/service/pm/pm.h index 370f2ed72..cc8d3f215 100644 --- a/src/core/hle/service/pm/pm.h +++ b/src/core/hle/service/pm/pm.h @@ -9,7 +9,12 @@ class ServiceManager; } namespace Service::PM { -enum class SystemBootMode : u32 { Normal = 0, Maintenance = 1 }; + +enum class SystemBootMode { + Normal, + Maintenance, +}; + /// Registers all PM services with the specified service manager. void InstallInterfaces(SM::ServiceManager& service_manager); |
