File diff r23537:f6a6d4ce4bd5 → r23538:8df50944b27a
src/music/midifile.hpp
Show inline comments
 
@@ -21,13 +21,13 @@
 
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
 
		SmallVector<byte, 8> data; ///< raw midi data contained in block
 
		std::vector<byte> data; ///< raw midi data contained in block
 
		DataBlock(uint32 _ticktime = 0) : ticktime(_ticktime) { }
 
	};
 
	struct TempoChange {
 
		uint32 ticktime; ///< tick number since start of file this tempo change occurs at
 
		uint32 tempo;    ///< new tempo in microseconds per tick
 
		TempoChange(uint32 _ticktime, uint32 _tempo) : ticktime(_ticktime), tempo(_tempo) { }