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" ); }