From 3284313a215d875dfb7d96585ab04d30469afc06 Mon Sep 17 00:00:00 2001 From: In-line Date: Wed, 8 Nov 2017 21:28:22 +0400 Subject: [PATCH] Add missing parameter to ALERT in PlayCDTrack (#206) * Add missing parameter to ALERT in PlayCDTrack --- regamedll/dlls/triggers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regamedll/dlls/triggers.cpp b/regamedll/dlls/triggers.cpp index 9cd0a9a3..151a4480 100644 --- a/regamedll/dlls/triggers.cpp +++ b/regamedll/dlls/triggers.cpp @@ -622,7 +622,7 @@ void PlayCDTrack(edict_t *pClient, int iTrack) if (iTrack < -1 || iTrack > 30) { - ALERT(at_console, "TriggerCDAudio - Track %d out of range\n"); + ALERT(at_console, "TriggerCDAudio - Track %d out of range\n", iTrack); return; }