[Scummvm-git-logs] scummvm master -> e700b5a2bc793c7370d1fdc7eda9ad5c900d2fb6
sev-
sev at scummvm.org
Sun Feb 23 13:31:32 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
e700b5a2bc TINSEL: One more compilation fix
Commit: e700b5a2bc793c7370d1fdc7eda9ad5c900d2fb6
https://github.com/scummvm/scummvm/commit/e700b5a2bc793c7370d1fdc7eda9ad5c900d2fb6
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-02-23T14:31:17+01:00
Commit Message:
TINSEL: One more compilation fix
Changed paths:
engines/tinsel/music.h
diff --git a/engines/tinsel/music.h b/engines/tinsel/music.h
index 33e643d..2b20424 100644
--- a/engines/tinsel/music.h
+++ b/engines/tinsel/music.h
@@ -37,7 +37,8 @@ namespace Tinsel {
class Music {
public:
Music() : _currentMidi(0), _currentLoop(false) {
- _midiBuffer = { 0, 0 };
+ _midiBuffer.pDat = nullptr;
+ _midiBuffer.size = 0;
}
bool PlayMidiSequence( // Plays the specified MIDI sequence through the sound driver
More information about the Scummvm-git-logs
mailing list