X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=usounds.c;fp=usounds.c;h=4b9ea0058589371ac5569d629526ff3e58cc1208;hb=7c9ee0544821f7981792be03e90ba15e9a8aeada;hp=aabb9eef35dbeb7b4ecdffe74b5b663d871f5d95;hpb=76a31cef74e7f1f84d9d3c0b76971ca1633321cf;p=xboard.git diff --git a/usounds.c b/usounds.c index aabb9ee..4b9ea00 100644 --- a/usounds.c +++ b/usounds.c @@ -77,7 +77,7 @@ extern char *getenv(); void -PlaySound (char *name) +PlaySoundFile (char *name) { if (*name == NULLCHAR) { return; @@ -96,43 +96,43 @@ PlaySound (char *name) void RingBell () { - PlaySound(appData.soundMove); + PlaySoundFile(appData.soundMove); } void PlayIcsWinSound () { - PlaySound(appData.soundIcsWin); + PlaySoundFile(appData.soundIcsWin); } void PlayIcsLossSound () { - PlaySound(appData.soundIcsLoss); + PlaySoundFile(appData.soundIcsLoss); } void PlayIcsDrawSound () { - PlaySound(appData.soundIcsDraw); + PlaySoundFile(appData.soundIcsDraw); } void PlayIcsUnfinishedSound () { - PlaySound(appData.soundIcsUnfinished); + PlaySoundFile(appData.soundIcsUnfinished); } void PlayAlarmSound () { - PlaySound(appData.soundIcsAlarm); + PlaySoundFile(appData.soundIcsAlarm); } void PlayTellSound () { - PlaySound(appData.soundTell); + PlaySoundFile(appData.soundTell); } void @@ -140,31 +140,31 @@ PlaySoundForColor (ColorClass cc) { switch (cc) { case ColorShout: - PlaySound(appData.soundShout); + PlaySoundFile(appData.soundShout); break; case ColorSShout: - PlaySound(appData.soundSShout); + PlaySoundFile(appData.soundSShout); break; case ColorChannel1: - PlaySound(appData.soundChannel1); + PlaySoundFile(appData.soundChannel1); break; case ColorChannel: - PlaySound(appData.soundChannel); + PlaySoundFile(appData.soundChannel); break; case ColorKibitz: - PlaySound(appData.soundKibitz); + PlaySoundFile(appData.soundKibitz); break; case ColorTell: - PlaySound(appData.soundTell); + PlaySoundFile(appData.soundTell); break; case ColorChallenge: - PlaySound(appData.soundChallenge); + PlaySoundFile(appData.soundChallenge); break; case ColorRequest: - PlaySound(appData.soundRequest); + PlaySoundFile(appData.soundRequest); break; case ColorSeek: - PlaySound(appData.soundSeek); + PlaySoundFile(appData.soundSeek); break; case ColorNormal: case ColorNone: