mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Warning fixes
This commit is contained in:
parent
afd9d864be
commit
8175c014e2
1 changed files with 1 additions and 1 deletions
|
@ -868,7 +868,7 @@ rotateVBO:
|
||||||
framebufferManager_->SetColorUpdated();
|
framebufferManager_->SetColorUpdated();
|
||||||
}
|
}
|
||||||
|
|
||||||
dxstate.colorMask.set(mask & D3DCLEAR_TARGET, mask & D3DCLEAR_TARGET, mask & D3DCLEAR_TARGET, mask & D3DCLEAR_STENCIL);
|
dxstate.colorMask.set((mask & D3DCLEAR_TARGET) != 0, (mask & D3DCLEAR_TARGET) != 0, (mask & D3DCLEAR_TARGET) != 0, (mask & D3DCLEAR_STENCIL) != 0);
|
||||||
pD3Ddevice->Clear(0, NULL, mask, clearColor, clearDepth, clearColor >> 24);
|
pD3Ddevice->Clear(0, NULL, mask, clearColor, clearDepth, clearColor >> 24);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue