From 10596a7c6875974bd343606a949986e9009a20b5 Mon Sep 17 00:00:00 2001 From: TimePath Date: Wed, 9 Dec 2015 08:31:54 +1100 Subject: [PATCH] PlayerSound: remove extraneous 'e' --- qcsrc/common/effects/qc/globalsound.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \ { \ -- 2.39.2