diff options
author | Kloen <kloen@outlawkiwi.com> | 2017-01-23 14:03:26 +0100 |
---|---|---|
committer | Kloen <kloen@outlawkiwi.com> | 2017-01-23 16:53:05 +0100 |
commit | 095f7c83fc4cb18817a68fcc5a1cfcc5fe98ac24 (patch) | |
tree | 7e8b1a93dddbad79be971e304146ae45958940a2 | |
parent | Changed FAQ link (#2462) (diff) | |
download | yuzu-095f7c83fc4cb18817a68fcc5a1cfcc5fe98ac24.tar yuzu-095f7c83fc4cb18817a68fcc5a1cfcc5fe98ac24.tar.gz yuzu-095f7c83fc4cb18817a68fcc5a1cfcc5fe98ac24.tar.bz2 yuzu-095f7c83fc4cb18817a68fcc5a1cfcc5fe98ac24.tar.lz yuzu-095f7c83fc4cb18817a68fcc5a1cfcc5fe98ac24.tar.xz yuzu-095f7c83fc4cb18817a68fcc5a1cfcc5fe98ac24.tar.zst yuzu-095f7c83fc4cb18817a68fcc5a1cfcc5fe98ac24.zip |
-rw-r--r-- | src/core/hle/service/mic_u.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/mic_u.cpp b/src/core/hle/service/mic_u.cpp index c62f8afc6..e98388560 100644 --- a/src/core/hle/service/mic_u.cpp +++ b/src/core/hle/service/mic_u.cpp @@ -93,7 +93,7 @@ static void StartSampling(Interface* self) { sample_rate = static_cast<SampleRate>(cmd_buff[2] & 0xFF); audio_buffer_offset = cmd_buff[3]; audio_buffer_size = cmd_buff[4]; - audio_buffer_loop = static_cast<bool>(cmd_buff[5] & 0xFF); + audio_buffer_loop = (cmd_buff[5] & 0xFF) != 0; cmd_buff[1] = RESULT_SUCCESS.raw; // No error is_sampling = true; @@ -202,7 +202,7 @@ static void GetGain(Interface* self) { */ static void SetPower(Interface* self) { u32* cmd_buff = Kernel::GetCommandBuffer(); - mic_power = static_cast<bool>(cmd_buff[1] & 0xFF); + mic_power = (cmd_buff[1] & 0xFF) != 0; cmd_buff[1] = RESULT_SUCCESS.raw; // No error LOG_WARNING(Service_MIC, "(STUBBED) called, mic_power=%u", mic_power); } @@ -252,7 +252,7 @@ static void SetIirFilterMic(Interface* self) { */ static void SetClamp(Interface* self) { u32* cmd_buff = Kernel::GetCommandBuffer(); - clamp = static_cast<bool>(cmd_buff[1] & 0xFF); + clamp = (cmd_buff[1] & 0xFF) != 0; cmd_buff[1] = RESULT_SUCCESS.raw; // No error LOG_WARNING(Service_MIC, "(STUBBED) called, clamp=%u", clamp); } @@ -282,7 +282,7 @@ static void GetClamp(Interface* self) { */ static void SetAllowShellClosed(Interface* self) { u32* cmd_buff = Kernel::GetCommandBuffer(); - allow_shell_closed = static_cast<bool>(cmd_buff[1] & 0xFF); + allow_shell_closed = (cmd_buff[1] & 0xFF) != 0; cmd_buff[1] = RESULT_SUCCESS.raw; // No error LOG_WARNING(Service_MIC, "(STUBBED) called, allow_shell_closed=%u", allow_shell_closed); } |