xbox updates

This commit is contained in:
Chris Danford
2003-11-13 00:39:36 +00:00
parent 5b076e16fa
commit 47def7d3dc
40 changed files with 1358 additions and 19 deletions
+4
View File
@@ -299,10 +299,14 @@ CString GetExtension( CString sPath )
CString GetCwd()
{
#ifdef _XBOX
return "D:\\" ;
#else
char buf[PATH_MAX];
bool ret = getcwd(buf, PATH_MAX) != NULL;
ASSERT(ret);
return buf;
#endif
}
/* mkdir -p. Doesn't fail if Path already exists and is a directory. */