mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
9972832afe
commit
74365aa6bf
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue