diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-03-31 16:15:00 +1100 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-03-31 16:15:00 +1100 |
| commit | 5e3837cadac73ba5b7d4085cddc48b0e816d826a (patch) | |
| tree | ced4c413506409f17806a5c6ea4864b4026ca924 /src/timestamp_pool.cc | |
| parent | df2933fd9c0ea2a99e89a6837123dfdf8b549d4a (diff) | |
Fix vram leak in Cyberpunk 2077, reduce duplicated logic + general cleanup
Diffstat (limited to 'src/timestamp_pool.cc')
| -rw-r--r-- | src/timestamp_pool.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timestamp_pool.cc b/src/timestamp_pool.cc index a618cfb..2d43c58 100644 --- a/src/timestamp_pool.cc +++ b/src/timestamp_pool.cc @@ -105,7 +105,7 @@ std::shared_ptr<TimestampPool::Handle> TimestampPool::acquire() { const auto query_index = *std::begin(query_chunk.free_indices); query_chunk.free_indices.erase(query_index); - // Custom deleter function that puts the handle on our async deleter queue. + // Custom deleter function that puts the handle on our async reaper queue. const auto reaper_deleter = [this](Handle* const handle) { if (!handle) { return; |
