(svn r7274) -Codechange [utf8]: Add input/output unicode support. This actually only changes win32

since it uses UTF16 for file access. To keep os-specific code to a minimum, OpenTTD
 uses UTF8 internally everywhere, converting to OS-type when needed (save/load/screenshot/etc.)
This commit is contained in:
Darkvater
2006-11-28 14:42:31 +00:00
parent 9253387001
commit 4e71091137
10 changed files with 89 additions and 37 deletions

3
os2.c
View File

@@ -261,3 +261,6 @@ void CSleep(int milliseconds)
{
delay(milliseconds);
}
const char *FS2OTTD(const char *name) {return name;}
const char *OTTD2FS(const char *name) {return name;}