From ac25c5fc60c98e55643972882980ca57a398f1e4 Mon Sep 17 00:00:00 2001 From: Pavol Marko Date: Mon, 30 Aug 2004 14:35:16 +0000 Subject: [PATCH] %% in a format input string now produces one % in the output string correctly --- amxmodx/CLang.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/amxmodx/CLang.cpp b/amxmodx/CLang.cpp index fe26c650..75c52fce 100755 --- a/amxmodx/CLang.cpp +++ b/amxmodx/CLang.cpp @@ -827,8 +827,6 @@ char * CLangMngr::FormatAmxString(AMX *amx, cell *params, int parm, int &len) outptr += strlen(outptr); } else { *outptr++ = '%'; - *outptr++ = '%'; - ++src; } } curState = S_Normal;