mirror of
https://github.com/stenzek/duckstation.git
synced 2026-02-15 19:04:37 +00:00
GPU/TextureCache: Fix replacement background name length
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user