* Rename Logger_windows -> LoggerWindows

* Add logger support for SDL base
This commit is contained in:
iProgramInCpp
2023-08-28 11:13:57 +03:00
parent 8fe86fccb5
commit 6e2fffdd68
10 changed files with 24 additions and 15 deletions

View File

@@ -12,7 +12,7 @@
#include <shlobj.h>
#include "AppPlatform_windows.hpp"
#include "Logger_windows.hpp"
#include "LoggerWindows.hpp"
#include "thirdparty/stb_image.h"
#include "thirdparty/stb_image_write.h"
@@ -35,7 +35,7 @@ AppPlatform_windows::AppPlatform_windows()
// This initializes the Logger singleton to use the Windows-specific variant
// If we didn't initialize it here, the Minecraft class would have our back
m_Logger = new Logger_windows();
m_Logger = new LoggerWindows();
}
AppPlatform_windows::~AppPlatform_windows()