Replacement: Avoid clash with X define.

This commit is contained in:
Unknown W. Brackets 2021-10-17 12:46:02 -07:00
parent 83b7b33cfd
commit 0721405628
2 changed files with 2 additions and 2 deletions

View file

@ -195,7 +195,7 @@ public:
ReplacedTexture &FindReplacement(u64 cachekey, u32 hash, int w, int h);
bool FindFiltering(u64 cachekey, u32 hash, TextureFiltering *forceFiltering);
ReplacedTexture &None() {
ReplacedTexture &FindNone() {
return none_;
}

View file

@ -1285,7 +1285,7 @@ ReplacedTexture &TextureCacheCommon::FindReplacement(TexCacheEntry *entry, int &
} else if (replaced.Valid()) {
entry->status |= TexCacheEntry::STATUS_TO_REPLACE;
}
return replacer_.None();
return replacer_.FindNone();
}
static void ReverseColors(void *dstBuf, const void *srcBuf, GETextureFormat fmt, int numPixels, bool useBGRA) {