metal: minimalize texture hardcoding
This commit is contained in:
parent
98c4ff461f
commit
e3ab4c6349
1 changed files with 2 additions and 2 deletions
|
@ -87,8 +87,8 @@ void GraphicsPipeline::Configure(bool is_indexed) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
auto a = gpu_memory->Read<u32>(addr);
|
auto a = gpu_memory->Read<u32>(addr);
|
||||||
// HACK: hardcode the image
|
// HACK: this particular texture breaks SMO
|
||||||
if (a != 310378932)
|
if (a == 310378931)
|
||||||
a = 310378932;
|
a = 310378932;
|
||||||
|
|
||||||
return TexturePair(a, false);
|
return TexturePair(a, false);
|
||||||
|
|
Loading…
Reference in a new issue