From a2082bac93bd6ff9da3d743837a31f60105f4dfb Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Wed, 12 Apr 2006 13:01:15 +0000 Subject: [PATCH] Don't include unnecessary headers when BINLOG_ENABLED isn't defined - whoa --- amxmodx/binlog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amxmodx/binlog.cpp b/amxmodx/binlog.cpp index 2ebc7f49..ba826e8f 100644 --- a/amxmodx/binlog.cpp +++ b/amxmodx/binlog.cpp @@ -1,9 +1,9 @@ +#if defined BINLOG_ENABLED + #include #include "amxmodx.h" #include "binlog.h" -#if defined BINLOG_ENABLED - BinLog g_BinLog; int g_binlog_level = 0; int g_binlog_maxsize = 0;