mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Replacement: Avoid clash with X define.
This commit is contained in:
parent
83b7b33cfd
commit
0721405628
2 changed files with 2 additions and 2 deletions
|
@ -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_;
|
||||
}
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue