remove redundant int to int conversion in rendered circles

This commit is contained in:
Matthias Mailänder
2013-02-25 21:51:29 +01:00
parent dd476bbf5c
commit 0b493bcb09
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ namespace OpenRA.Mods.RA
wr.DrawRangeCircle(
Color.FromArgb(128, Color.Cyan),
self.CenterLocation.ToFloat2(), (int)self.Info.Traits.Get<CreatesShroudInfo>().Range);
self.CenterLocation.ToFloat2(), self.Info.Traits.Get<CreatesShroudInfo>().Range);
}
}
}