summaryrefslogtreecommitdiff
path: root/src/music/midifile.hpp
diff options
context:
space:
mode:
authorHenry Wilson <m3henry@googlemail.com>2019-03-04 20:49:33 +0000
committerPeterN <peter@fuzzle.org>2019-03-26 20:15:57 +0000
commitcc62f4163f230ed82ef3b04187987d3e380cd570 (patch)
treec4e271f72ae231d9934f215624054d605665ca6c /src/music/midifile.hpp
parentc01a2e2a81d8e7bcd47d46292ed0b7d452081c31 (diff)
downloadopenttd-cc62f4163f230ed82ef3b04187987d3e380cd570.tar.xz
Cleanup: Remove unused size template parameters from SmallMap and Auto[Free|Delete]SmallVector
Diffstat (limited to 'src/music/midifile.hpp')
-rw-r--r--src/music/midifile.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/music/midifile.hpp b/src/music/midifile.hpp
index e0e5170b7..4d362a1be 100644
--- a/src/music/midifile.hpp
+++ b/src/music/midifile.hpp
@@ -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) { }
};