diff options
author | smatz <smatz@openttd.org> | 2008-05-27 23:10:42 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-05-27 23:10:42 +0000 |
commit | 8aa797603c4588195b2a28364651e99b719481ba (patch) | |
tree | 73c7138f0cb63be58543df2ae401a6024c0b7442 /src | |
parent | 14d8aacebbbff6f498b27c9294dc39c575839a96 (diff) | |
download | openttd-8aa797603c4588195b2a28364651e99b719481ba.tar.xz |
(svn r13303) -Fix (r13301): 64bit gcc compilation was broken
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp index 0b9a92769..c35c4ae96 100644 --- a/src/fileio.cpp +++ b/src/fileio.cpp @@ -74,7 +74,7 @@ static void FioRestoreFile(int slot) #endif /* LIMITED_FDS */ /* Seek to a file and a position */ -void FioSeekToFile(uint8 slot, uint32 pos) +void FioSeekToFile(uint8 slot, size_t pos) { FILE *f; #if defined(LIMITED_FDS) |