mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 07:45:33 +01:00
Fix a clear bug in aldlist.cpp.
Properly clears itself now.
This commit is contained in:
parent
866cdc5961
commit
1cf7cbb936
@ -48,7 +48,7 @@ ALDeviceList::ALDeviceList()
|
|||||||
const char *actualDeviceName = NULL;
|
const char *actualDeviceName = NULL;
|
||||||
|
|
||||||
// DeviceInfo vector stores, for each enumerated device, it's device name, selection status, spec version #, and extension support
|
// DeviceInfo vector stores, for each enumerated device, it's device name, selection status, spec version #, and extension support
|
||||||
vDeviceInfo.empty();
|
vDeviceInfo.clear();
|
||||||
vDeviceInfo.reserve(10);
|
vDeviceInfo.reserve(10);
|
||||||
|
|
||||||
defaultDeviceIndex = 0;
|
defaultDeviceIndex = 0;
|
||||||
@ -151,7 +151,7 @@ ALDeviceList::~ALDeviceList()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vDeviceInfo.empty();
|
vDeviceInfo.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user