summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/FileHandlerARC.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-03-03 10:21:13 +0000
committernakeee <nakeee@gmail.com>2009-03-03 10:21:13 +0000
commit87cf3e64bd3b02b4f968aec9c00a0e4f07df49b0 (patch)
tree3afe37e951a9f57b476c38db52dcd5623d43ad22 /Source/Core/DiscIO/Src/FileHandlerARC.cpp
parent281e6bc883d26c0483445a577cc5f0b95cdfa86b (diff)
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
Diffstat (limited to 'Source/Core/DiscIO/Src/FileHandlerARC.cpp')
-rw-r--r--Source/Core/DiscIO/Src/FileHandlerARC.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/Src/FileHandlerARC.cpp b/Source/Core/DiscIO/Src/FileHandlerARC.cpp
index ae8b96ac6d..b87590de05 100644
--- a/Source/Core/DiscIO/Src/FileHandlerARC.cpp
+++ b/Source/Core/DiscIO/Src/FileHandlerARC.cpp
@@ -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);