fix #2560 and other comments

This commit is contained in:
Lectem 2017-02-11 15:07:12 +01:00
parent 48825ceb01
commit 7b87571b09
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");
}