summaryrefslogtreecommitdiff
path: root/src/music
diff options
context:
space:
mode:
authorNiels Martin Hansen <nielsm@indvikleren.dk>2019-07-04 21:35:45 +0200
committerNiels Martin Hansen <nielsm@indvikleren.dk>2019-07-04 22:27:34 +0200
commitf8633fc63b453b7645d163a06e703d2a517cd8fb (patch)
treeaf0880b4000c94178e62c07d875e5a7f77a4dfba /src/music
parent27384486e486ea2ced69b48f5174577317108731 (diff)
downloadopenttd-f8633fc63b453b7645d163a06e703d2a517cd8fb.tar.xz
Codechange: Fix comment indentation
Diffstat (limited to 'src/music')
-rw-r--r--src/music/win32_m.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/music/win32_m.cpp b/src/music/win32_m.cpp
index f5360df11..dced0f9d1 100644
--- a/src/music/win32_m.cpp
+++ b/src/music/win32_m.cpp
@@ -181,8 +181,8 @@ void CALLBACK TimerCallback(UINT uTimerID, UINT, DWORD_PTR dwUser, DWORD_PTR, DW
/* skip beginning of file? */
if (_midi.current_segment.start > 0 && _midi.current_block == 0 && _midi.current_segment.start_block == 0) {
/* find first block after start time and pretend playback started earlier
- * this is to allow all blocks prior to the actual start to still affect playback,
- * as they may contain important controller and program changes */
+ * this is to allow all blocks prior to the actual start to still affect playback,
+ * as they may contain important controller and program changes */
size_t preload_bytes = 0;
for (size_t bl = 0; bl < _midi.current_file.blocks.size(); bl++) {
MidiFile::DataBlock &block = _midi.current_file.blocks[bl];