mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Reset es_inuse upon Reset.
This commit is contained in:
@ -150,6 +150,12 @@ void Reset(bool _bHard)
|
||||
g_FdMap[i] = NULL;
|
||||
}
|
||||
|
||||
u32 j;
|
||||
for (j=0; j<ES_MAX_COUNT; j++)
|
||||
{
|
||||
es_inuse[j] = false;
|
||||
}
|
||||
|
||||
TDeviceMap::iterator itr = g_DeviceMap.begin();
|
||||
while (itr != g_DeviceMap.end())
|
||||
{
|
||||
|
Reference in New Issue
Block a user