fix change I reverted. Oops.

This commit is contained in:
Chris Danford
2004-10-06 03:28:33 +00:00
parent 25f83be525
commit 322b40e1f6
2 changed files with 2 additions and 4 deletions
@@ -18,14 +18,11 @@ bool UsbStorageDevice::operator==(const UsbStorageDevice& other) const
#undef COMPARE #undef COMPARE
} }
// What is this?
#if 0
void UsbStorageDevice::SetOsMountDir( const CString &s ) void UsbStorageDevice::SetOsMountDir( const CString &s )
{ {
sOsMountDir = s; sOsMountDir = s;
FixSlashesInPlace( sOsMountDir ); FixSlashesInPlace( sOsMountDir );
} }
#endif
MemoryCardDriver *MakeMemoryCardDriver() MemoryCardDriver *MakeMemoryCardDriver()
{ {
@@ -36,7 +36,8 @@ struct UsbStorageDevice
CString sVendor; CString sVendor;
CString sProduct; CString sProduct;
bool IsBlank() { return sOsMountDir.empty(); } bool IsBlank() const { return sOsMountDir.empty(); }
void SetOsMountDir( const CString &s );
bool operator==(const UsbStorageDevice& other) const; bool operator==(const UsbStorageDevice& other) const;
}; };