diff options
author | Liam <byteslice@airmail.cc> | 2024-01-15 21:53:20 -0500 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2024-01-18 21:12:30 -0500 |
commit | 04867e2456d926364ede540954767cc39c58e464 (patch) | |
tree | 328ac4e2a5eeb52f2adcfaadcfa05231d939b8f2 | |
parent | 32f623e029666bafe796ca8bf0a8b95bf9684b5f (diff) |
nvhost_vic: use map erase by key
-rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_vic.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp b/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp index 263061f1d..bf090f5eb 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp @@ -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 |