File diff r23538:8df50944b27a → r23539:bce8329ee42d
src/music/midifile.hpp
Show inline comments
 
@@ -22,8 +22,8 @@ struct MusicSongInfo;
 

	
 
struct MidiFile {
 
	struct DataBlock {
 
		uint32 ticktime;           ///< tick number since start of file this block should be triggered at
 
		uint32 realtime;           ///< real-time (microseconds) since start of file this block should be triggered at
 
		uint32 ticktime;        ///< tick number since start of file this block should be triggered at
 
		uint32 realtime;        ///< 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 _ticktime = 0) : ticktime(_ticktime) { }
 
	};