Fix broken builds due to commit 45787281.

This commit is contained in:
rogerman 2021-09-18 23:01:20 -07:00
parent 4578728120
commit d626bad6bd
2 changed files with 2 additions and 2 deletions

View File

@ -264,7 +264,7 @@ volatile bool execute = true;
- (const void *)getVideoBufferWithHint:(void *)hint
{
return GPU->GetDisplayInfo().masterNativeBuffer;
return GPU->GetDisplayInfo().masterNativeBuffer16;
}
- (OEGameCoreRendering)gameCoreRendering

View File

@ -2278,7 +2278,7 @@ public:
char temp [256];
sprintf(temp, " " /*"mismatch at "*/ "byte %d(0x%X at %p): %d(0x%X) != %d(0x%X)\n", i, i, dst, *src,*src, *dst,*dst);
if(ptr == dispInfo.masterNativeBuffer || ptr == dispInfo.masterCustomBuffer || ptr == GPU->GetEngineMain()->Get3DFramebufferMain()) // ignore screen-only differences since frame skipping can cause them and it's probably ok
if(ptr == dispInfo.masterNativeBuffer16 || ptr == dispInfo.masterCustomBuffer || ptr == GPU->GetEngineMain()->Get3DFramebufferMain()) // ignore screen-only differences since frame skipping can cause them and it's probably ok
break;
differences.push_back(temp); // <-- probably the best place for a breakpoint