VIDEO: Add one more missing initializer in HNMDecoder's constructor

This commit is contained in:
Filippos Karapetis 2022-01-09 18:53:26 +02:00
parent a848dc0d26
commit e843e6447f

View File

@ -36,7 +36,7 @@ namespace Video {
// When no sound display a frame every 80ms
HNMDecoder::HNMDecoder(bool loop, byte *initialPalette) : _regularFrameDelay(80),
_videoTrack(nullptr), _audioTrack(nullptr), _stream(nullptr),
_loop(loop), _initialPalette(initialPalette), _dataBuffer(nullptr) {
_loop(loop), _initialPalette(initialPalette), _dataBuffer(nullptr), _dataBufferAlloc(0) {
}
HNMDecoder::~HNMDecoder() {