2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

nvhost_vic: use map erase by key

This commit is contained in:
Liam 2024-01-15 21:53:20 -05:00
parent 32f623e029
commit 04867e2456

View file

@ -78,10 +78,7 @@ void nvhost_vic::OnClose(DeviceFD fd) {
if (iter != host1x_file.fd_to_id.end()) {
system.GPU().ClearCdmaInstance(iter->second);
}
auto it = sessions.find(fd);
if (it != sessions.end()) {
sessions.erase(it);
}
sessions.erase(fd);
}
} // namespace Service::Nvidia::Devices