diff options
author | bunnei <bunneidev@gmail.com> | 2020-11-26 10:27:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-26 10:27:24 +0100 |
commit | 322349e8cc948d069f62a85a0c09a689c3e31796 (patch) | |
tree | b11cb630a78fba7e611045462425ce929429a40c /src/core/hle/service | |
parent | Merge pull request #4981 from ogniK5377/ioctl-ctrl (diff) | |
parent | nvdrv, video_core: Don't index out of bounds when given invalid syncpoint ID (diff) | |
download | yuzu-322349e8cc948d069f62a85a0c09a689c3e31796.tar yuzu-322349e8cc948d069f62a85a0c09a689c3e31796.tar.gz yuzu-322349e8cc948d069f62a85a0c09a689c3e31796.tar.bz2 yuzu-322349e8cc948d069f62a85a0c09a689c3e31796.tar.lz yuzu-322349e8cc948d069f62a85a0c09a689c3e31796.tar.xz yuzu-322349e8cc948d069f62a85a0c09a689c3e31796.tar.zst yuzu-322349e8cc948d069f62a85a0c09a689c3e31796.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/nvdrv/syncpoint_manager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/syncpoint_manager.h b/src/core/hle/service/nvdrv/syncpoint_manager.h index 4168b6c7e..d395c5d0b 100644 --- a/src/core/hle/service/nvdrv/syncpoint_manager.h +++ b/src/core/hle/service/nvdrv/syncpoint_manager.h @@ -37,7 +37,7 @@ public: * @returns The lower bound for the specified syncpoint. */ u32 GetSyncpointMin(u32 syncpoint_id) const { - return syncpoints[syncpoint_id].min.load(std::memory_order_relaxed); + return syncpoints.at(syncpoint_id).min.load(std::memory_order_relaxed); } /** @@ -46,7 +46,7 @@ public: * @returns The upper bound for the specified syncpoint. */ u32 GetSyncpointMax(u32 syncpoint_id) const { - return syncpoints[syncpoint_id].max.load(std::memory_order_relaxed); + return syncpoints.at(syncpoint_id).max.load(std::memory_order_relaxed); } /** |