1
0
Fork 0
mirror of https://git.suyu.dev/suyu/dynarmic.git synced 2025-03-05 13:45:36 +00:00

Break tests by fixing them

This commit is contained in:
Tillmann Karras 2016-08-05 01:51:35 +01:00
parent af27ef8d6c
commit ab383b4be5

View file

@ -144,7 +144,7 @@ public:
u32 Generate() const {
u32 inst;
do {
u32 random = RandInt<u32>(0, 0xFFFF);
u32 random = RandInt<u32>(0, 0xFFFFFFFF);
inst = bits | (random & ~mask);
} while (!is_valid(inst));
return inst;