From 9dc6b7366a435da4a6e29c0b4e49769cd6bd99a2 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 9 Dec 2005 23:54:18 +0000 Subject: [PATCH] cleanup --- .../arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp b/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp index 4cedfbaa31..8a81d0ae95 100644 --- a/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp +++ b/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp @@ -21,7 +21,7 @@ const CString TEMP_MOUNT_POINT = "/@mctemp/"; -void GetNewStorageDevices( vector& vDevicesOut ); +void GetUSBStorageDevices( vector& vDevicesOut ); template bool VectorsAreEqual( const T &a, const T &b ) @@ -166,7 +166,7 @@ bool MemoryCardDriverThreaded_Linux::DoOneUpdate( bool bMount, vector vOld = m_vDevicesLastSeen; // copy - GetNewStorageDevices( vStorageDevicesOut ); + GetUSBStorageDevices( vStorageDevicesOut ); vector &vNew = vStorageDevicesOut; // check for connects @@ -250,9 +250,9 @@ bool MemoryCardDriverThreaded_Linux::DoOneUpdate( bool bMount, vector& vDevicesOut ) +void GetUSBStorageDevices( vector& vDevicesOut ) { - LOG->Trace( "GetNewStorageDevices" ); + LOG->Trace( "GetUSBStorageDevices" ); vDevicesOut.clear(); @@ -429,7 +429,7 @@ void GetNewStorageDevices( vector& vDevicesOut ) } } - LOG->Trace( "Done with GetNewStorageDevices" ); + LOG->Trace( "Done with GetUSBStorageDevices" ); }