Addressed issues

This commit is contained in:
Chloe Marcec 2021-03-30 20:27:27 +11:00
parent f9b1e20d52
commit a01d4dc72c
2 changed files with 22 additions and 21 deletions

View file

@ -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);