From 12ca1511325909227171e5806f535a8b6ffdfc9b Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Wed, 6 Mar 2024 09:36:09 +0000 Subject: [PATCH] Codefix: Fully initialise `MidiFile::DataBlock` to avoid gcc warning. --- src/music/midifile.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/music/midifile.hpp b/src/music/midifile.hpp index c66094315e..430d95bc08 100644 --- a/src/music/midifile.hpp +++ b/src/music/midifile.hpp @@ -17,8 +17,8 @@ struct MusicSongInfo; struct MidiFile { struct DataBlock { - uint32_t ticktime; ///< tick number since start of file this block should be triggered at - uint32_t realtime; ///< real-time (microseconds) since start of file this block should be triggered at + uint32_t ticktime; ///< tick number since start of file this block should be triggered at + uint32_t realtime = 0; ///< real-time (microseconds) since start of file this block should be triggered at std::vector data; ///< raw midi data contained in block DataBlock(uint32_t _ticktime = 0) : ticktime(_ticktime) { } };