mic: Fix `gain` undeclared identifier (#7177)
This commit is contained in:
parent
de40153fa4
commit
90a5d989e7
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue