From ef16aa45a165366067cfcf15ef83f20c498b3049 Mon Sep 17 00:00:00 2001 From: "jean.chalard" Date: Tue, 4 May 2010 16:18:56 +0000 Subject: [PATCH] J : * Little compilation problem fix. --- JGE/src/JLogger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JGE/src/JLogger.cpp b/JGE/src/JLogger.cpp index 6ca8f9c57..43564301d 100644 --- a/JGE/src/JLogger.cpp +++ b/JGE/src/JLogger.cpp @@ -14,7 +14,7 @@ void JLogger::Log(const char * text){ file << "\n"; file.close(); } -#if defined (WIN32) || defined (LINUX) +#if defined (WIN32) OutputDebugString(text); OutputDebugString("\n"); #else @@ -22,4 +22,4 @@ void JLogger::Log(const char * text){ printf("\n"); #endif -} \ No newline at end of file +}