From fe8999ce0aacfca81fd6ec67c9c837e4767cc8ed Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 20 May 2005 23:44:06 +0000 Subject: [PATCH] RageFileManager::GetFileDriver doesn't prepend a slash to mountpoints. instead of hacking it up, fix the mountpoint names ... --- stepmania/src/MemoryCardManager.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stepmania/src/MemoryCardManager.cpp b/stepmania/src/MemoryCardManager.cpp index 7f57fbdb75..c1b81b1af3 100644 --- a/stepmania/src/MemoryCardManager.cpp +++ b/stepmania/src/MemoryCardManager.cpp @@ -20,15 +20,15 @@ MemoryCardManager* MEMCARDMAN = NULL; // global and accessable from anywhere in const CString MEM_CARD_MOUNT_POINT[NUM_PLAYERS] = { /* @ is importast; see RageFileManager LoadedDriver::GetPath */ - "@mc1/", - "@mc2/", + "/@mc1/", + "/@mc2/", }; static const CString MEM_CARD_MOUNT_POINT_INTERNAL[NUM_PLAYERS] = { /* @ is importast; see RageFileManager LoadedDriver::GetPath */ - "@mc1int/", - "@mc2int/", + "/@mc1int/", + "/@mc2int/", }; /* Only access the memory card driver in a timeout-safe thread. */