Fix RCS1058

This commit is contained in:
RoosterDragon
2023-03-18 12:05:13 +00:00
committed by Gustas
parent d1dc6293e8
commit 1a299d10ed
4 changed files with 6 additions and 3 deletions

View File

@@ -149,7 +149,7 @@ namespace OpenRA.Mods.Cnc.FileFormats
if (bits == 0) return;
for (i = 0; i < len - 1; i++) n[i] = (n[i] >> bits) | (n[i + 1] << (32 - bits));
n[i] = n[i] >> bits;
n[i] >>= bits;
}
static void ShlBigNum(uint[] n, int bits, int len)