Codefix: Fully initialise MidiFile::DataBlock to avoid gcc warning. (#12240)

This commit is contained in:
Peter Nelson
2024-03-09 17:01:39 +00:00
committed by GitHub
parent 82430a1086
commit de8a840db5

View File

@@ -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<byte> data; ///< raw midi data contained in block
DataBlock(uint32_t _ticktime = 0) : ticktime(_ticktime) { }
};