Disable tracing from Raylib.

This commit is contained in:
2023-06-15 21:42:35 +02:00
parent cf474ab153
commit bf4fb6e1e3

View File

@@ -20,7 +20,7 @@ namespace DaggerFramework.Rendering
public override void CreateWindow(string title, Vector2 size)
{
// Raylib.SetTraceLogLevel(TraceLogLevel.LOG_NONE);
Raylib.SetTraceLogLevel(TraceLogLevel.LOG_NONE);
_windowSize = size;
Raylib.InitWindow((int)_windowSize.X, (int)_windowSize.Y, title);
}