fix CodeLineMustNotEndWithWhitespace

This commit is contained in:
Matthias Mailänder
2015-01-25 18:18:31 +01:00
parent 47e2d9d623
commit 24deec2a7b
18 changed files with 33 additions and 38 deletions

View File

@@ -129,7 +129,7 @@ namespace OpenRA.FileFormats
// Decode each block of IMA ADPCM data in RawOutput
for (var block = 0; block < numBlocks; block++)
{
// Each block starts with a initial state per-channel
// Each block starts with a initial state per-channel
for (var c = 0; c < Channels; c++)
{
predictor[c] = s.ReadInt16();