Fix DSPAcceleratorTest

This commit is contained in:
xperia64
2022-06-18 19:29:36 -04:00
committed by Tillmann Karras
parent ac2fdefcb4
commit 0dd282f626
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ protected:
BitField<3, 1, FormatDecode> decode;
BitField<4, 2, FormatGainCfg> gain_cfg;
BitField<6, 10, u16> unk;
} m_sample_format;
} m_sample_format{0};
s16 m_gain = 0;
s16 m_yn1 = 0;

View File

@ -17,7 +17,7 @@ public:
{
std::array<s16, 16> coefs{};
m_accov_raised = false;
return Read(coefs.data());
return ReadSample(coefs.data());
}
bool EndExceptionRaised() const { return m_accov_raised; }