mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-08 05:32:57 +00:00
Misc. fixups of MSVC build
This commit is contained in:
@@ -45,7 +45,7 @@ boost::optional<TranslatorVisitor::BitMasks> TranslatorVisitor::DecodeBitMasks(b
|
||||
s32 R = s32(immr.ZeroExtend() & levels);
|
||||
u64 d = u64(S - R) & levels;
|
||||
|
||||
size_t esize = 1 << len;
|
||||
size_t esize = static_cast<size_t>(1) << len;
|
||||
u64 welem = Common::Ones<u64>(S + 1);
|
||||
u64 telem = Common::Ones<u64>(d + 1);
|
||||
u64 wmask = Common::RotateRight(Common::Replicate(welem, esize), R);
|
||||
|
||||
Reference in New Issue
Block a user