Ensure that sdl3 is the fallback if unknown windowingAPI is specified (#6266)

* Ensure what sdl3 is a fallback if unknown windowingAPI is specified

Webedit ops

* I am blind
This commit is contained in:
Myra
2025-10-23 23:43:57 +02:00
committed by GitHub
parent 8478e62a3e
commit 669b515ce6

View File

@@ -119,8 +119,8 @@ namespace Robust.Client.Graphics.Clyde
break;
default:
_logManager.GetSawmill("clyde.win").Log(
LogLevel.Error, "Unknown windowing API: {name}. Falling back to GLFW.", windowingApi);
goto case "glfw";
LogLevel.Error, "Unknown windowing API: {name}. Falling back to SDL3.", windowingApi);
goto case "sdl3";
}
_windowing = winImpl;