[Scummvm-git-logs] scummvm master -> d8ef2bd72372ba2047166b1ca6ab9b04a822c2d7

sev- sev at scummvm.org
Sun Feb 23 13:27:52 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:
d8ef2bd723 TINSEL: Fix compilation


Commit: d8ef2bd72372ba2047166b1ca6ab9b04a822c2d7
    https://github.com/scummvm/scummvm/commit/d8ef2bd72372ba2047166b1ca6ab9b04a822c2d7
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-02-23T14:27:38+01:00

Commit Message:
TINSEL: Fix compilation

Changed paths:
    engines/tinsel/music.h


diff --git a/engines/tinsel/music.h b/engines/tinsel/music.h
index 95bbdd7..33e643d 100644
--- a/engines/tinsel/music.h
+++ b/engines/tinsel/music.h
@@ -36,7 +36,9 @@ namespace Tinsel {
 
 class Music {
 public:
-	Music() : _midiBuffer({ 0, 0 }), _currentMidi(0), _currentLoop(false) {}
+	Music() : _currentMidi(0), _currentLoop(false) {
+		_midiBuffer = { 0, 0 };
+	}
 
 	bool PlayMidiSequence(		// Plays the specified MIDI sequence through the sound driver
 		uint32 dwFileOffset,		// handle of MIDI sequence data




More information about the Scummvm-git-logs mailing list