From e546c690413ed104595665e765c68844ff0d2901 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 4 Jun 2006 08:40:27 +0000 Subject: [PATCH] fixed linux bug --- amxmodx/modules.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amxmodx/modules.cpp b/amxmodx/modules.cpp index b199e972..97d6ad66 100755 --- a/amxmodx/modules.cpp +++ b/amxmodx/modules.cpp @@ -852,9 +852,9 @@ bool ConvertModuleName(const char *pathString, String &path) path.append("_amxx"); #if defined __linux__ #if defined AMD64 || PAWN_CELL_SIZE==64 - path.append("amd64"); + path.append("_amd64"); #else - path.append("i"); + path.append("_i"); path.append(iDigit); path.append("86"); #endif