diff options
Diffstat (limited to 'os_win32.cpp')
-rw-r--r-- | os_win32.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os_win32.cpp b/os_win32.cpp index 5f8dddf..f9fb56a 100644 --- a/os_win32.cpp +++ b/os_win32.cpp @@ -28,7 +28,7 @@ #include <stdio.h> #include "os.hpp" -#include "log.hpp" +#include "trace_write.hpp" namespace OS { @@ -131,7 +131,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { case DLL_THREAD_DETACH: return TRUE; case DLL_PROCESS_DETACH: - Log::Close(); + Trace::Close(); return TRUE; } (void)hinstDLL; |