1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-12-26 15:10:40 +05:30

corrupter.c: remove superfluous parentheses

This commit is contained in:
Intel A80486DX2-66 2024-11-19 22:10:28 +03:00
parent 0ca825d72e
commit 5b373c8d54
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -63,7 +63,7 @@ enum Interoperation_Result corrupt_byte(Interoperation_Input_Vars) {
uint8_t probability = param->probability;
for (byte bit = 0; bit < CHAR_BIT; bit++) {
if (get_chance(probability) && (damage_left > 0)) {
if (get_chance(probability) && damage_left > 0) {
bit_mask[bit] = true;
damage_left--;
}