summaryrefslogtreecommitdiff
path: root/src/win95/debuglog.cpp
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-07-29 02:29:46 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:36 +0200
commit3b458d258326f7103cddb922de90d311745a1038 (patch)
treeaa1bbbd2a982d966165e9d92d341d5dc0f5517c0 /src/win95/debuglog.cpp
parent71fa444424be52b9b2c3fd508ad663923d28a62c (diff)
More compiling. All 'easy-to-compile' files now do.
Added the Rebellion license.
Diffstat (limited to 'src/win95/debuglog.cpp')
-rw-r--r--src/win95/debuglog.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/win95/debuglog.cpp b/src/win95/debuglog.cpp
index 2e76b9f..9b64a76 100644
--- a/src/win95/debuglog.cpp
+++ b/src/win95/debuglog.cpp
@@ -1,6 +1,5 @@
#include <string.h>
#include <stdlib.h>
-#include <windows.h>
#include "debuglog.hpp"
LogFile::LogFile(char const * const _fname) : fname(0) , ever_written(0)
@@ -37,7 +36,7 @@ LogFile::~LogFile()
FILE * fp = fopen(fname,"a");
for (int attempt=0; !fp && attempt<10; ++attempt)
{
- Sleep(100);
+ /* Sleep(100); */
fp = fopen(fname,"a");
}
if (fp)