summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/y2r_u.cpp
diff options
context:
space:
mode:
authorLectem <lectem@gmail.com>2017-02-11 15:07:12 +0100
committerLectem <lectem@gmail.com>2017-03-18 10:44:01 +0100
commit77f4fc473fba5658a5a383b1b61e70584cd5689d (patch)
treec62e2543074b7165aec54b4b20ad5b31be9ac0e8 /src/core/hle/service/y2r_u.cpp
parentmove push out of class body and add u8 u16 bool specializations (diff)
downloadyuzu-77f4fc473fba5658a5a383b1b61e70584cd5689d.tar
yuzu-77f4fc473fba5658a5a383b1b61e70584cd5689d.tar.gz
yuzu-77f4fc473fba5658a5a383b1b61e70584cd5689d.tar.bz2
yuzu-77f4fc473fba5658a5a383b1b61e70584cd5689d.tar.lz
yuzu-77f4fc473fba5658a5a383b1b61e70584cd5689d.tar.xz
yuzu-77f4fc473fba5658a5a383b1b61e70584cd5689d.tar.zst
yuzu-77f4fc473fba5658a5a383b1b61e70584cd5689d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/y2r_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/y2r_u.cpp b/src/core/hle/service/y2r_u.cpp
index cfea62962..c0837d49d 100644
--- a/src/core/hle/service/y2r_u.cpp
+++ b/src/core/hle/service/y2r_u.cpp
@@ -191,7 +191,7 @@ static void SetSpacialDithering(Interface* self) {
static void GetSpacialDithering(Interface* self) {
IPC::RequestBuilder rb(Kernel::GetCommandBuffer(), 0xA, 2, 0);
rb.Push(RESULT_SUCCESS);
- rb.Push(bool(spacial_dithering_enabled));
+ rb.Push(spacial_dithering_enabled != 0);
LOG_WARNING(Service_Y2R, "(STUBBED) called");
}