From 2e11b4f346ff84ee3128f2acc17e71f4ebec4908 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 14 Feb 2017 17:03:31 +0100 Subject: [PATCH] - fixed: The S_Sound script export did not call the actual function. --- src/s_sound.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/s_sound.cpp b/src/s_sound.cpp index f01d3288c..5c0ae69e2 100644 --- a/src/s_sound.cpp +++ b/src/s_sound.cpp @@ -1256,6 +1256,7 @@ DEFINE_ACTION_FUNCTION(DObject, S_Sound) PARAM_INT(channel); PARAM_FLOAT_DEF(volume); PARAM_FLOAT_DEF(attn); + S_Sound(channel, id, volume, attn); return 0; }