summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pctl/module.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/pctl/module.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/pctl/module.h b/src/core/hle/service/pctl/module.h
index cdba11d60..032481b00 100644
--- a/src/core/hle/service/pctl/module.h
+++ b/src/core/hle/service/pctl/module.h
@@ -13,13 +13,13 @@ class System;
namespace Service::PCTL {
-enum class Capability : s32 {
- None = 0x0,
+enum class Capability : u32 {
+ None = 0,
Application = 1 << 0,
SnsPost = 1 << 1,
Recovery = 1 << 6,
Status = 1 << 8,
- SteroVision = 1 << 9,
+ StereoVision = 1 << 9,
System = 1 << 15,
};
DECLARE_ENUM_FLAG_OPERATORS(Capability);