mic: Fix gain undeclared identifier (#7177)

This commit is contained in:
Wunk 2023-11-15 19:27:43 -08:00 committed by GitHub
parent de40153fa4
commit 90a5d989e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -298,7 +298,7 @@ struct MIC_U::Impl {
IPC::RequestBuilder rb = rp.MakeBuilder(2, 0); IPC::RequestBuilder rb = rp.MakeBuilder(2, 0);
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);
rb.Push<u8>(state.gain); rb.Push<u8>(state.gain);
LOG_TRACE(Service_MIC, "gain={}", gain); LOG_TRACE(Service_MIC, "gain={}", state.gain);
} }
void SetPower(Kernel::HLERequestContext& ctx) { void SetPower(Kernel::HLERequestContext& ctx) {