mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00:00
Fix reporting typo logging wrong things.
This commit is contained in:
parent
b3355b2f7c
commit
34da6f983a
@ -958,7 +958,7 @@ void TextureCache::SetTexture() {
|
|||||||
int h = 1 << ((gstate.texsize[0] >> 8) & 0xf);
|
int h = 1 << ((gstate.texsize[0] >> 8) & 0xf);
|
||||||
|
|
||||||
int bufw = GetLevelBufw(0, texaddr);
|
int bufw = GetLevelBufw(0, texaddr);
|
||||||
if (bufw == 0 || (gstate.texbufwidth[0] & 0xf800) != 0) {
|
if ((bufw == 0 || (gstate.texbufwidth[0] & 0xf800) != 0) && texaddr >= PSP_GetUserMemoryBase()) {
|
||||||
ERROR_LOG_REPORT(HLE, "Texture with unexpected bufw (full=%d)", gstate.texbufwidth[0] & 0xffff);
|
ERROR_LOG_REPORT(HLE, "Texture with unexpected bufw (full=%d)", gstate.texbufwidth[0] & 0xffff);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user