SoundPlayer player = new SoundPlayer();
player.SoundLocation = "C:\\Users\\tamar\\Documents\\Visual Studio 2010\\Projects\\The legend of Omoor\\The legend of Omoor\\challenger.wav";
SoundPlayer player2 = new SoundPlayer();
player2.SoundLocation = "C:\\Users\\tamar\\Documents\\Visual Studio 2010\\Projects\\The legend of Omoor\\The legend of Omoor\\challenger.wav";
Console.WriteLine("The legend of Omoor!");
Console.WriteLine("Press any letter to continue.");
Console.ReadLine();
player.Play();
char a;
Console.WriteLine("Click 'x' to use special move: Arad!");
a = char.Parse(Console.ReadLine());
if (a == 'x')
{
player2.Play();//that's the part where nothing works, neither the first music, nor the second.
}
the music starts playing after I press "any letter to continue". the problem is that the music stops once I choose x, and it doesn't play the new music that I put in the 'if' too. even without the player2.Play(); in the if, it won't play anything.