From: TimePath Date: Tue, 8 Dec 2015 21:31:54 +0000 (+1100) Subject: PlayerSound: remove extraneous 'e' X-Git-Tag: xonotic-v0.8.2~1530 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=10596a7c6875974bd343606a949986e9009a20b5;p=xonotic%2Fxonotic-data.pk3dir.git PlayerSound: remove extraneous 'e' --- diff --git a/qcsrc/common/effects/qc/globalsound.qh b/qcsrc/common/effects/qc/globalsound.qh index 892d3d078..12ceee29c 100644 --- a/qcsrc/common/effects/qc/globalsound.qh +++ b/qcsrc/common/effects/qc/globalsound.qh @@ -124,7 +124,7 @@ void PrecachePlayerSounds(string f); void _GlobalSound(entity this, entity gs, entity ps, string sample, float chan, float voicetype, bool fake); #define GlobalSound(this, def, chan, voicetype) _GlobalSound(this, def, NULL, string_null, chan, voicetype, false) #define GlobalSound_string(this, def, chan, voicetype) _GlobalSound(this, NULL, NULL, def, chan, voicetype, false) - #define PlayerSound(thise, def, chan, voicetype) _GlobalSound(this, NULL, def, string_null, chan, voicetype, false) + #define PlayerSound(this, def, chan, voicetype) _GlobalSound(this, NULL, def, string_null, chan, voicetype, false) #define VoiceMessage(this, def, msg) \ do \ { \