diff options
author | rubidium <rubidium@openttd.org> | 2008-05-27 21:41:00 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-27 21:41:00 +0000 |
commit | 5c5ee7eb579d0ee6655e0b81f6169dca7632ab97 (patch) | |
tree | 086ec523744482fc8374da46db2a402e4b5c5d0a /src/sound.cpp | |
parent | 49a0bd7f90f3c48f81e9ad0bcabe87a77cf36e0f (diff) | |
download | openttd-5c5ee7eb579d0ee6655e0b81f6169dca7632ab97.tar.xz |
(svn r13301) -Fix [FS#1997]: resolve more MSVC 9 x64 warnings.
Diffstat (limited to 'src/sound.cpp')
-rw-r--r-- | src/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound.cpp b/src/sound.cpp index 74663cff7..e610c53a7 100644 --- a/src/sound.cpp +++ b/src/sound.cpp @@ -29,7 +29,7 @@ static void OpenBankFile(const char *filename) uint i; FioOpenFile(SOUND_SLOT, filename); - uint pos = FioGetPos(); + size_t pos = FioGetPos(); uint count = FioReadDword() / 8; /* Simple check for the correct number of original sounds. */ |