From 5e3837cadac73ba5b7d4085cddc48b0e816d826a Mon Sep 17 00:00:00 2001 From: Nicolas James Date: Tue, 31 Mar 2026 16:15:00 +1100 Subject: Fix vram leak in Cyberpunk 2077, reduce duplicated logic + general cleanup --- src/timestamp_pool.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/timestamp_pool.cc') 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::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; -- cgit v1.2.3