From 25ea8e4825b7aca3978841db6647f83fb722903d Mon Sep 17 00:00:00 2001 From: Ben Anderson Date: Thu, 27 Jan 2005 23:58:37 +0000 Subject: [PATCH] Fix compilation --- .../src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp b/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp index 381cf793c6..b859434e14 100644 --- a/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp +++ b/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp @@ -258,7 +258,7 @@ void MemoryCardDriverThreaded_Linux::MountThreadDoOneUpdate() d.bWriteTestSucceeded = bMountedSuccessfully && TestWrite( d.sOsMountDir ); // read name - this->Mount( &d, TEMP_MOUNT_POINT ); + this->Mount( &d ); FILEMAN->FlushDirCache( TEMP_MOUNT_POINT ); Profile profile; @@ -266,8 +266,6 @@ void MemoryCardDriverThreaded_Linux::MountThreadDoOneUpdate() profile.LoadEditableDataFromDir( sProfileDir ); d.sName = profile.GetDisplayName(); - UnmountMountPoint( TEMP_MOUNT_POINT ); - LOG->Trace( "WriteTest: %s, Name: %s", d.bWriteTestSucceeded ? "succeeded" : "failed", d.sName.c_str() ); } }