Locked frame times; SAM, GUN, AGUN work again.

- all frames are 40ms long. (except something in the sidebar, which should really be PlayFetchIndex anyway)
    - SAM, GUN, and AGUN no longer crash the game when built. (Turreted used Mobile, which those buildings don't have)
This commit is contained in:
Bob
2009-10-20 00:57:50 +13:00
parent a7ce0f97d1
commit 707ba7d957
14 changed files with 32 additions and 31 deletions

View File

@@ -18,9 +18,9 @@ namespace OpenRa.Game.Traits
public abstract IEnumerable<Pair<Sprite, float2>> Render(Actor self);
public virtual void Tick(Actor self, Game game, int dt)
public virtual void Tick(Actor self, Game game)
{
anim.Tick(dt);
anim.Tick();
}
}
}