fix change I reverted. Oops.
This commit is contained in:
@@ -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;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user