Fix a few spelling errors

This commit is contained in:
ScottNZ
2013-11-12 18:38:21 +13:00
parent 49b1e69f44
commit 74e2baeb48
4 changed files with 13 additions and 13 deletions

View File

@@ -272,7 +272,7 @@ namespace OpenRA
}
// Returns true if played successfully
public static bool PlayPredefined(Player p, Actor voicedUnit, string type, string definition, string variant, bool attentuateVolume)
public static bool PlayPredefined(Player p, Actor voicedUnit, string type, string definition, string variant, bool attenuateVolume)
{
if (definition == null) return false;
@@ -323,7 +323,7 @@ namespace OpenRA
if (!String.IsNullOrEmpty(name) && (p == null || p == p.World.LocalPlayer))
soundEngine.Play2D(sounds[name],
false, true, WPos.Zero,
InternalSoundVolume, attentuateVolume);
InternalSoundVolume, attenuateVolume);
return true;
}