removed all the sound junk from Game; removed spurious loose files

This commit is contained in:
Chris Forbes
2009-12-05 18:27:00 +13:00
parent 522bf234b8
commit 3ff9c2383a
20 changed files with 124 additions and 1674 deletions

View File

@@ -75,13 +75,13 @@ namespace OpenRa.Game
{
DisplayCash += Math.Min(displayCashDeltaPerFrame,
Cash - DisplayCash);
Game.PlaySound("cashup1.aud", false);
Sound.Play("cashup1.aud");
}
else if (DisplayCash > Cash)
{
DisplayCash -= Math.Min(displayCashDeltaPerFrame,
DisplayCash - Cash);
Game.PlaySound("cashdn1.aud", false);
Sound.Play("cashdn1.aud");
}
}
}