1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-26 21:54:22 +01:00

(svn r10781) -Fix: ported more pieces to WinCE, so it compiles a bit more

-Fix: WinCE doesn't support console
-Fix: Set debug lvl4 when running a debug WinCE build (as you can't give parameters any easy way)
This commit is contained in:
truelight
2007-08-04 12:53:41 +00:00
parent cb9d0c69d1
commit 424757c078
6 changed files with 61 additions and 9 deletions

View File

@@ -108,7 +108,9 @@ char *FiosBrowseTo(const FiosItem *item)
char *path = _fios_path;
switch (item->type) {
#if defined(WIN32) || defined(__OS2__)
#if defined(WINCE)
case FIOS_TYPE_DRIVE: sprintf(path, PATHSEP ""); break;
#elif defined(WIN32) || defined(__OS2__)
case FIOS_TYPE_DRIVE: sprintf(path, "%c:" PATHSEP, item->title[0]); break;
#endif