From c1b965b030aea14f4a7c2be84af6fe1b44840ed5 Mon Sep 17 00:00:00 2001 From: Ben Anderson Date: Fri, 28 Jan 2005 00:27:52 +0000 Subject: [PATCH] Fix apparent typo breaking compilation (GCC wrongly complained about ISO for scoping) --- stepmania/src/MemoryCardManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/MemoryCardManager.cpp b/stepmania/src/MemoryCardManager.cpp index 770d40c36a..f1e4260062 100644 --- a/stepmania/src/MemoryCardManager.cpp +++ b/stepmania/src/MemoryCardManager.cpp @@ -259,7 +259,7 @@ void MemoryCardManager::MountCard( PlayerNumber pn ) return; } - m_bMounted[p] = true; + m_bMounted[pn] = true; /* If this is the first time we're mounting the device, mount the VFS drivers. * Simply mounting our VFS on a directory doesn't actually touch the directory,