DefaultIOSystem: use correct define to detect Visual Studi compiler.
parent
34ee4c4b9a
commit
ef6baa0acf
|
@ -135,7 +135,7 @@ inline void MakeAbsolutePath (const char* in, char* _out)
|
||||||
{
|
{
|
||||||
ai_assert(in && _out);
|
ai_assert(in && _out);
|
||||||
char* ret;
|
char* ret;
|
||||||
#if defined _WIN32 && !defined __GNUC__
|
#ifdef _MSC_VER
|
||||||
ret = ::_fullpath( _out, in, PATHLIMIT );
|
ret = ::_fullpath( _out, in, PATHLIMIT );
|
||||||
#else
|
#else
|
||||||
// use realpath
|
// use realpath
|
||||||
|
|
Loading…
Reference in New Issue