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 | 47c22cffce6483c80ec2ce86bcf63f5467dfc651 (patch) | |
tree | 73c7138f0cb63be58543df2ae401a6024c0b7442 | |
parent | adabce3d11f5ad77080bb2bd8be8655ad63563cc (diff) | |
download | openttd-47c22cffce6483c80ec2ce86bcf63f5467dfc651.tar.xz |
(svn r13303) -Fix (r13301): 64bit gcc compilation was broken
-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) |