From 9ab2608ba0578cde93b11198b7a17077d0a838a9 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Tue, 3 Jun 2025 22:55:21 +1000 Subject: [PATCH] GPU/TextureCache: Fix replacement background name length --- src/core/gpu_hw_texture_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/gpu_hw_texture_cache.cpp b/src/core/gpu_hw_texture_cache.cpp index 067f76653..530209d7b 100644 --- a/src/core/gpu_hw_texture_cache.cpp +++ b/src/core/gpu_hw_texture_cache.cpp @@ -2462,7 +2462,7 @@ size_t GPUTextureCache::HashCacheKeyHash::operator()(const HashCacheKey& k) cons TinyString GPUTextureCache::VRAMReplacementName::ToString() const { - return TinyString::from_format("{:08X}{:08X}", high, low); + return TinyString::from_format("{:016X}{:016X}", high, low); } bool GPUTextureCache::VRAMReplacementName::Parse(const std::string_view file_title)