From 01fb40423db43a70966ffce39e27d8d1d5302ab2 Mon Sep 17 00:00:00 2001 From: Robin Kertels Date: Mon, 8 Aug 2022 13:05:45 +0200 Subject: [PATCH] [d3d9] Remove some dead debug code Oops. --- src/d3d9/d3d9_mem.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/d3d9/d3d9_mem.h b/src/d3d9/d3d9_mem.h index 20ac138c..b0d61f05 100644 --- a/src/d3d9/d3d9_mem.h +++ b/src/d3d9/d3d9_mem.h @@ -47,11 +47,6 @@ namespace dxvk { D3D9MemoryChunk (D3D9MemoryChunk&& other) = delete; D3D9MemoryChunk& operator = (D3D9MemoryChunk&& other) = delete; -#ifdef D3D9_MEM_MAP_CHUNKS - void IncMapCounter(); - void DecMapCounter(); - void* Ptr() const { return m_ptr; } -#endif D3D9Memory Alloc(uint32_t Size); void Free(D3D9Memory* Memory); bool IsEmpty(); @@ -71,11 +66,6 @@ namespace dxvk { uint32_t m_mappingGranularity; std::vector m_freeRanges; std::vector m_mappingRanges; - -#ifdef D3D9_MEM_MAP_CHUNKS - uint32_t m_mapCounter = 0; - void* m_ptr; -#endif }; class D3D9Memory {