GPU/TextureCache: Fix replacement background name length

This commit is contained in:
Stenzek 2025-06-03 22:55:21 +10:00
parent 5b40d7902a
commit 9ab2608ba0
No known key found for this signature in database

View File

@ -2462,7 +2462,7 @@ size_t GPUTextureCache::HashCacheKeyHash::operator()(const HashCacheKey& k) cons
TinyString GPUTextureCache::VRAMReplacementName::ToString() const 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) bool GPUTextureCache::VRAMReplacementName::Parse(const std::string_view file_title)