Fixed few \ on code that suppose to work on linux as well.

That most fixed something, probably some crash and some iso properties issue:)


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2536 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2009-03-03 10:21:13 +00:00
parent 281e6bc883
commit 87cf3e64bd
3 changed files with 8 additions and 8 deletions

View File

@ -209,11 +209,11 @@ CARCFile::BuildFilenames(const size_t _FirstIndex, const size_t _LastIndex, cons
// this is a directory, build up the new szDirectory
if (_szDirectory != NULL)
{
sprintf(rFileInfo.m_FullPath, "%s%s\\", _szDirectory, &_szNameTable[uOffset]);
sprintf(rFileInfo.m_FullPath, "%s%s/", _szDirectory, &_szNameTable[uOffset]);
}
else
{
sprintf(rFileInfo.m_FullPath, "%s\\", &_szNameTable[uOffset]);
sprintf(rFileInfo.m_FullPath, "%s/", &_szNameTable[uOffset]);
}
CurrentIndex = BuildFilenames(CurrentIndex + 1, (size_t) rFileInfo.m_FileSize, rFileInfo.m_FullPath, _szNameTable);