summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/FileSystemGCWii.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/FileSystemGCWii.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/FileSystemGCWii.cpp')
-rw-r--r--Source/Core/DiscIO/Src/FileSystemGCWii.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/Src/FileSystemGCWii.cpp b/Source/Core/DiscIO/Src/FileSystemGCWii.cpp
index e251d6f93a..4afdad5a73 100644
--- a/Source/Core/DiscIO/Src/FileSystemGCWii.cpp
+++ b/Source/Core/DiscIO/Src/FileSystemGCWii.cpp
@@ -225,9 +225,9 @@ size_t CFileSystemGCWii::BuildFilenames(const size_t _FirstIndex, const size_t _
{
// this is a directory, build up the new szDirectory
if (_szDirectory != NULL)
- CharArrayFromFormat(rFileInfo->m_FullPath, "%s%s\\", _szDirectory, filename);
+ CharArrayFromFormat(rFileInfo->m_FullPath, "%s%s/", _szDirectory, filename);
else
- CharArrayFromFormat(rFileInfo->m_FullPath, "%s\\", filename);
+ CharArrayFromFormat(rFileInfo->m_FullPath, "%s/", filename);
CurrentIndex = BuildFilenames(CurrentIndex + 1, (size_t) rFileInfo->m_FileSize, rFileInfo->m_FullPath, _NameTableOffset);
}