Merge pull request #9264 from leoetlino/fix-fmt-log
DSP: Fix one DEBUG_LOG call
This commit is contained in:
commit
7f5cecf7ef
|
@ -132,7 +132,7 @@ void gdsp_ifx_write(u32 addr, u16 val)
|
||||||
case DSP_GAIN:
|
case DSP_GAIN:
|
||||||
if (val != 0)
|
if (val != 0)
|
||||||
{
|
{
|
||||||
DEBUG_LOG(DSPLLE, "Gain Written: {:#06x}", val);
|
DEBUG_LOG_FMT(DSPLLE, "Gain Written: {:#06x}", val);
|
||||||
}
|
}
|
||||||
[[fallthrough]];
|
[[fallthrough]];
|
||||||
case DSP_DSPA:
|
case DSP_DSPA:
|
||||||
|
|
Loading…
Reference in New Issue