summaryrefslogtreecommitdiffstats
path: root/System.c4g
diff options
context:
space:
mode:
Diffstat (limited to 'System.c4g')
-rw-r--r--System.c4g/Global.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/System.c4g/Global.c b/System.c4g/Global.c
index d3b126c..99d74e6 100644
--- a/System.c4g/Global.c
+++ b/System.c4g/Global.c
@@ -389,10 +389,10 @@ global func Event_AdapterListener(array event, array customArgs, array args)
{
if(i != 0)
{
- argString = Format("%s, ", argString);
+ argString ..= ", ";
}
- argString = Format("%s%s", argString, Serialize(args[i]));
+ argString ..= Serialize(args[i]);
}
if(GetType(customArgs[0]) == C4V_Any || customArgs[0] == -1)