summaryrefslogtreecommitdiff
path: root/functions.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-06 08:38:09 +0000
committertron <tron@openttd.org>2005-02-06 08:38:09 +0000
commitff3bc3cc94a6e1f37c8d305ee7c723312bd5d8b8 (patch)
tree565009fc791efe403a4156315a5d34eceb8fd468 /functions.h
parent0381073e56049b39df7fa28cc082a41829951724 (diff)
downloadopenttd-ff3bc3cc94a6e1f37c8d305ee7c723312bd5d8b8.tar.xz
(svn r1814) Let ReadFileToMem() return void* (instead of byte*) because we don't know what the caller wants to do with the data
Diffstat (limited to 'functions.h')
-rw-r--r--functions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.h b/functions.h
index 2659b4bf4..04d255f29 100644
--- a/functions.h
+++ b/functions.h
@@ -257,7 +257,7 @@ void GameSizeChanged(void);
bool FileExists(const char *filename);
bool ReadLanguagePack(int index);
void InitializeLanguagePacks(void);
-byte *ReadFileToMem(const char *filename, size_t *lenp, size_t maxsize);
+void *ReadFileToMem(const char *filename, size_t *lenp, size_t maxsize);
int GetLanguageList(char **languages, int max);
void CheckSwitchToEuro(void);