diff options
| author | Lectem <lectem@gmail.com> | 2017-02-11 15:07:12 +0100 |
|---|---|---|
| committer | Lectem <lectem@gmail.com> | 2017-03-18 10:44:01 +0100 |
| commit | 77f4fc473fba5658a5a383b1b61e70584cd5689d (patch) | |
| tree | c62e2543074b7165aec54b4b20ad5b31be9ac0e8 /src/core/hle/service/y2r_u.cpp | |
| parent | fb70c9683c088233810abe298d587eaf671f6041 (diff) | |
fix #2560 and other comments
Diffstat (limited to 'src/core/hle/service/y2r_u.cpp')
| -rw-r--r-- | src/core/hle/service/y2r_u.cpp | 2 |
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"); } |
