diff options
author | rubidium <rubidium@openttd.org> | 2008-04-07 20:28:58 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-04-07 20:28:58 +0000 |
commit | ee02dd7dadb00e51a04b65e38603d77e9cfa1848 (patch) | |
tree | 9f8c5c236cf106ef895d27405d1a9d266e338480 /src/sound.cpp | |
parent | f04ecd2e4a90bc62a6d8728261a8fdf78efdd545 (diff) | |
download | openttd-ee02dd7dadb00e51a04b65e38603d77e9cfa1848.tar.xz |
(svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
Diffstat (limited to 'src/sound.cpp')
-rw-r--r-- | src/sound.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/sound.cpp b/src/sound.cpp index 9fed4a689..c5daccae4 100644 --- a/src/sound.cpp +++ b/src/sound.cpp @@ -197,9 +197,7 @@ static const byte _sound_idx[] = { void SndCopyToPool() { - uint i; - - for (i = 0; i < _file_count; i++) { + for (uint i = 0; i < _file_count; i++) { FileEntry *orig = &_files[_sound_idx[i]]; FileEntry *fe = AllocateFileEntry(); |