Making string struct a bit more simple and support only utf8.

Still just ascii for now but a bit easier to manager.
Use [..]A() functions from win api to not have to convert to wide char everywhere
This commit is contained in:
2025-03-05 15:56:56 -05:00
parent 09dc26ae79
commit 764824ff24
10 changed files with 397 additions and 250 deletions

View File

@@ -46,7 +46,7 @@ void JulietApplication::Init()
{
Log(LogLevel::Message, LogCategory::Editor, "Initializing Juliet Application...");
Log(LogLevel::Message, LogCategory::Editor, "%s", GetBasePath());
Log(LogLevel::Message, LogCategory::Editor, "%s", CStr(GetBasePath()));
GraphicsConfig config;
GraphicsDevice = CreateGraphicsDevice(config);