not "new"
This commit is contained in:
@@ -117,10 +117,10 @@ bool MemoryCardDriverThreaded_Windows::USBStorageDevicesChanged()
|
|||||||
{
|
{
|
||||||
/* Nothing needs a write test (or we can't do it right now). If no devices
|
/* Nothing needs a write test (or we can't do it right now). If no devices
|
||||||
* have changed, either, we have nothing to do. */
|
* have changed, either, we have nothing to do. */
|
||||||
DWORD dwNewLogicalDrives = ::GetLogicalDrives();
|
DWORD dwLogicalDrives = ::GetLogicalDrives();
|
||||||
if( dwNewLogicalDrives != m_dwLastLogicalDrives )
|
if( dwLogicalDrives != m_dwLastLogicalDrives )
|
||||||
{
|
{
|
||||||
m_dwLastLogicalDrives = dwNewLogicalDrives;
|
m_dwLastLogicalDrives = dwLogicalDrives;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user