summaryrefslogtreecommitdiff
path: root/src/fileio.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-01-22 07:27:06 +0000
committerpeter1138 <peter1138@openttd.org>2008-01-22 07:27:06 +0000
commitffec79bbcf36028bc676310c71a40b0b033e85c5 (patch)
treeaa8442d483b420571317c63234db3640f7e6df7b /src/fileio.h
parent9444eb4484e5691a52ddc458bd8b401c6e19571d (diff)
downloadopenttd-ffec79bbcf36028bc676310c71a40b0b033e85c5.tar.xz
(svn r11940) -Codechange: Store short filename once per open file instead of once per sprite cache entry. Not all file types need this, but most of the time no sprite cache entry needed it either.
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 d60d8ed2e..881c983f3 100644
--- a/src/fileio.h
+++ b/src/fileio.h
@@ -12,7 +12,7 @@
void FioSeekTo(uint32 pos, int mode);
void FioSeekToFile(uint8 slot, uint32 pos);
uint32 FioGetPos();
-const char *FioGetFilename();
+const char *FioGetFilename(uint8 slot);
byte FioReadByte();
uint16 FioReadWord();
uint32 FioReadDword();