luxxxoor / ROM-Protect

Plugin anti-flood & bug-fix.
4 stars 9 forks source link

format works slower, that formatex #8

Closed In-line closed 7 years ago

In-line commented 7 years ago

for example

    get_localinfo("amxx_logs", LogFile, charsmax(LogFile));
    format(LogFile, charsmax(LogFile), "%s/%s", LogFile, PluginName);

need to be refactored to

    {
        new iLen = get_localinfo("amxx_logs", LogFile, charsmax(LogFile));
        formatex(LogFile[iLen], charsmax(LogFile) - iLen, "/%s", PluginName);
    }