Atrac: Avoid an uninitialized value.

This commit is contained in:
Unknown W. Brackets 2022-08-13 00:16:08 -07:00
parent 482dbb66ea
commit 8b3526b8c2

View File

@ -401,7 +401,7 @@ struct Atrac {
// Used by low-level decoding and to track streaming.
u32 bufferPos_;
u32 bufferValidBytes_;
u32 bufferHeaderSize_;
u32 bufferHeaderSize_ = 0;
u16 channels_;
u16 outputChannels_;