diff options
author | Darkvater <darkvater@openttd.org> | 2006-08-05 00:47:32 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-08-05 00:47:32 +0000 |
commit | 525a0ad4c033b378511a3bfc8da79b67a94c2497 (patch) | |
tree | 9c2671f2ef8e6b0e0d6858655cc2c0f754e32de6 /stdafx.h | |
parent | ee7b3de2f58c22d5667724471a366c23764de46d (diff) | |
download | openttd-525a0ad4c033b378511a3bfc8da79b67a94c2497.tar.xz |
(svn r5765) - Codechange: Fully unify the OS-specific FiosGet...List functions into fios.c, as well as FiosGetSavegameList and FiosGetScenarioList functions with the help of some callbacks.
Diffstat (limited to 'stdafx.h')
-rw-r--r-- | stdafx.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -174,8 +174,10 @@ #if defined(UNIX) # define PATHSEP "/" +# define PATHSEPCHAR '/' #else # define PATHSEP "\\" +# define PATHSEPCHAR '\\' #endif typedef unsigned char byte; |