Ok, I lied. Here's a fix. Linux is playable now. I'm going to bed...

git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@302 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
arcum42 2008-11-05 14:27:31 +00:00 committed by Gregory Hainaut
parent 9972832afe
commit 74365aa6bf
1 changed files with 5 additions and 0 deletions

View File

@ -23,7 +23,12 @@
// (someday this should be replaced with proper C++ exception handling)
int g_Error_PathTooLong = FALSE;
#ifdef WIN32
static const char PathSeparator = '\\';
#else
static const char PathSeparator = '/';
#endif
int isPathRooted( const char* path )
{