Fixes the speed of the blinking READY text (in RA & TD).

This commit is contained in:
Sebastien Kerguen
2014-04-24 17:01:15 +02:00
committed by Matthias Mailänder
parent 082667eeea
commit a7c77d4155
2 changed files with 2 additions and 2 deletions

View File

@@ -249,7 +249,7 @@ namespace OpenRA.Mods.Cnc.Widgets
if (first.Done)
{
// Blink the ready text
if (orderManager.LocalFrameNumber / 25 % 2 == 0)
if (orderManager.LocalFrameNumber / 9 % 2 == 0)
overlayFont.DrawTextWithContrast(ReadyText,
icon.Pos + readyOffset,
Color.White, Color.Black, 1);