diff options
| -rw-r--r-- | src/core/hle/service/nvdrv/core/syncpoint_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/core/syncpoint_manager.cpp b/src/core/hle/service/nvdrv/core/syncpoint_manager.cpp index aba51d280..c4c4c2593 100644 --- a/src/core/hle/service/nvdrv/core/syncpoint_manager.cpp +++ b/src/core/hle/service/nvdrv/core/syncpoint_manager.cpp | |||
| @@ -64,7 +64,7 @@ void SyncpointManager::FreeSyncpoint(u32 id) { | |||
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | bool SyncpointManager::IsSyncpointAllocated(u32 id) const { | 66 | bool SyncpointManager::IsSyncpointAllocated(u32 id) const { |
| 67 | return (id <= SyncpointCount) && syncpoints[id].reserved; | 67 | return (id < SyncpointCount) && syncpoints[id].reserved; |
| 68 | } | 68 | } |
| 69 | 69 | ||
| 70 | bool SyncpointManager::HasSyncpointExpired(u32 id, u32 threshold) const { | 70 | bool SyncpointManager::HasSyncpointExpired(u32 id, u32 threshold) const { |