* Little compilation problem fix.
This commit is contained in:
jean.chalard
2010-05-04 16:18:56 +00:00
parent 6f053ab419
commit ef16aa45a1

View File

@@ -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
}
}