summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-05-27 23:10:42 +0000
committersmatz <smatz@openttd.org>2008-05-27 23:10:42 +0000
commit47c22cffce6483c80ec2ce86bcf63f5467dfc651 (patch)
tree73c7138f0cb63be58543df2ae401a6024c0b7442 /src
parentadabce3d11f5ad77080bb2bd8be8655ad63563cc (diff)
downloadopenttd-47c22cffce6483c80ec2ce86bcf63f5467dfc651.tar.xz
(svn r13303) -Fix (r13301): 64bit gcc compilation was broken
Diffstat (limited to 'src')
-rw-r--r--src/fileio.cpp2
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)