diff options
Diffstat (limited to 'src/win95/debuglog.cpp')
| -rw-r--r-- | src/win95/debuglog.cpp | 3 |
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) |
