mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-10 17:01:17 +12:00
No type inference when calling std::rotl and std::rotr.
This commit is contained in:
parent
53e3ed946e
commit
e2eedc7b2c
11 changed files with 54 additions and 54 deletions
|
@ -158,15 +158,15 @@ void LatteMRT::ApplyCurrentState()
|
|||
if (colorView)
|
||||
{
|
||||
key += ((uint64)colorView);
|
||||
key = std::rotl(key, 5);
|
||||
key = std::rotl<uint64>(key, 5);
|
||||
fboLookupView = colorView;
|
||||
}
|
||||
key = std::rotl(key, 7);
|
||||
key = std::rotl<uint64>(key, 7);
|
||||
}
|
||||
if (sLatteCurrentRendertargets.depthBuffer.view)
|
||||
{
|
||||
key += ((uint64)sLatteCurrentRendertargets.depthBuffer.view);
|
||||
key = std::rotl(key, 5);
|
||||
key = std::rotl<uint64>(key, 5);
|
||||
key += (sLatteCurrentRendertargets.depthBuffer.hasStencil);
|
||||
if (fboLookupView == NULL)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue