fix #2560 and other comments

This commit is contained in:
Lectem
2017-02-11 15:07:12 +01:00
parent fb70c9683c
commit 77f4fc473f
3 changed files with 22 additions and 22 deletions

View File

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