summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pctl/module.h
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2021-03-30 11:27:27 +0200
committerChloe Marcec <dmarcecguzman@gmail.com>2021-03-30 11:27:27 +0200
commit4930242c20a45905dd3d81aa9acda167be586b27 (patch)
treed3498de21c932ec0c1f93c0f03673dae1b6c338e /src/core/hle/service/pctl/module.h
parentpctl: Rework how pctl works to be more accurate (diff)
downloadyuzu-4930242c20a45905dd3d81aa9acda167be586b27.tar
yuzu-4930242c20a45905dd3d81aa9acda167be586b27.tar.gz
yuzu-4930242c20a45905dd3d81aa9acda167be586b27.tar.bz2
yuzu-4930242c20a45905dd3d81aa9acda167be586b27.tar.lz
yuzu-4930242c20a45905dd3d81aa9acda167be586b27.tar.xz
yuzu-4930242c20a45905dd3d81aa9acda167be586b27.tar.zst
yuzu-4930242c20a45905dd3d81aa9acda167be586b27.zip
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);