summaryrefslogtreecommitdiff
path: root/src/fileio.h
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-09-13 18:22:34 +0000
committertruelight <truelight@openttd.org>2007-09-13 18:22:34 +0000
commite5452205634d47d61039208c2d2fa6457b3f32bf (patch)
tree0593f8ece7aec74da5da2ff346539cd1698e6ec4 /src/fileio.h
parent5ec047d6b721b2abc463eafa149c3b1a1fe297dd (diff)
downloadopenttd-e5452205634d47d61039208c2d2fa6457b3f32bf.tar.xz
(svn r11095) -Codechange: don't abuse 'file_pos' by storing the file_slot in it too, but use a nice seperate variable for it
-Note: on a side-note, this allows files bigger than 16+ MiB, needed for tar-support
Diffstat (limited to 'src/fileio.h')
-rw-r--r--src/fileio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.h b/src/fileio.h
index 8596dc123..a12c01e65 100644
--- a/src/fileio.h
+++ b/src/fileio.h
@@ -8,7 +8,7 @@
#include "helpers.hpp"
void FioSeekTo(uint32 pos, int mode);
-void FioSeekToFile(uint32 pos);
+void FioSeekToFile(uint8 slot, uint32 pos);
uint32 FioGetPos();
const char *FioGetFilename();
byte FioReadByte();