Browse Source

Update src/core/hle/service/nvdrv/devices/nvmap.cpp

Co-authored-by: LC <mathew1800@gmail.com>
pull/15/merge
bunnei 6 years ago
committed by GitHub
parent
commit
db94457205
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/hle/service/nvdrv/devices/nvmap.cpp

2
src/core/hle/service/nvdrv/devices/nvmap.cpp

@ -65,7 +65,7 @@ u32 nvmap::CreateObject(u32 size) {
const u32 handle = next_handle++;
handles[handle] = std::move(object);
handles.insert_or_assign(handle, std::move(object));
return handle;
}

Loading…
Cancel
Save