summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/set/set_sys.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-24 05:47:01 +0200
committerLioncash <mathew1800@gmail.com>2018-07-24 06:48:16 +0200
commit63c605c04af6f236cf13daf71cd6107b122820b5 (patch)
tree3db705795d13e3d87b635084547a3668ff425412 /src/core/hle/service/set/set_sys.h
parentipc_helper: Add helper member function for popping enum values to RequestParser (diff)
downloadyuzu-63c605c04af6f236cf13daf71cd6107b122820b5.tar
yuzu-63c605c04af6f236cf13daf71cd6107b122820b5.tar.gz
yuzu-63c605c04af6f236cf13daf71cd6107b122820b5.tar.bz2
yuzu-63c605c04af6f236cf13daf71cd6107b122820b5.tar.lz
yuzu-63c605c04af6f236cf13daf71cd6107b122820b5.tar.xz
yuzu-63c605c04af6f236cf13daf71cd6107b122820b5.tar.zst
yuzu-63c605c04af6f236cf13daf71cd6107b122820b5.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/set/set_sys.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/core/hle/service/set/set_sys.h b/src/core/hle/service/set/set_sys.h
index b77a97cde..f602f3c77 100644
--- a/src/core/hle/service/set/set_sys.h
+++ b/src/core/hle/service/set/set_sys.h
@@ -11,10 +11,19 @@ namespace Service::Set {
class SET_SYS final : public ServiceFramework<SET_SYS> {
public:
explicit SET_SYS();
- ~SET_SYS() = default;
+ ~SET_SYS() override;
private:
+ /// Indicates the current theme set by the system settings
+ enum class ColorSet : u32 {
+ BasicWhite = 0,
+ BasicBlack = 1,
+ };
+
void GetColorSetId(Kernel::HLERequestContext& ctx);
+ void SetColorSetId(Kernel::HLERequestContext& ctx);
+
+ ColorSet color_set = ColorSet::BasicWhite;
};
} // namespace Service::Set