Removed a redundant cast - IDE0004

This commit is contained in:
penev92
2023-03-14 15:37:16 +02:00
committed by Matthias Mailänder
parent bde13a8572
commit e808549637

View File

@@ -184,7 +184,7 @@ namespace OpenRA.Mods.Cnc.FileFormats
}
mPos = op - 1;
mPos -= (*(ushort*)(void*)ip) >> 2;
mPos -= (*(ushort*)ip) >> 2;
ip += 2;
}
else if (t >= 16)