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
1 changed files with 1 additions and 1 deletions

View File

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