From fe603c29f0734437c6be2c24c304a4f8b5c23e06 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 3 Jun 2006 23:13:02 +0000 Subject: [PATCH] fixed wrong aff return val --- dlls/sqlite/module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/sqlite/module.cpp b/dlls/sqlite/module.cpp index 0074de52..092791f8 100644 --- a/dlls/sqlite/module.cpp +++ b/dlls/sqlite/module.cpp @@ -16,7 +16,7 @@ int SetMysqlAffinity(AMX *amx) MF_AmxReRegister(amx, g_BaseSqlNatives, -1); MF_AmxReRegister(amx, g_ThreadSqlNatives, -1); - return 0; + return 1; } bool DirExists(const char *dir)