1
0
Fork 0
forked from lthn/blockchain

changed to wildprog

This commit is contained in:
crypro.zoidberg 2019-04-08 20:28:11 +02:00
parent 68ed21a88a
commit 12e64bf462

View file

@ -117,9 +117,9 @@ inline uint32_t random_math(uint32_t a, uint32_t b, uint32_t selector) noexcept
{
default:
case 0:
return a + b;
case 1:
return a * b;
case 1:
return a + b;
case 2:
return mul_hi32(a, b);
case 3: