From b347cd2f54ea3395aab3111d45beeb2caed49edb Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 26 Mar 2026 23:32:51 +0100 Subject: [PATCH] Disable SDL on Mac and Windows for now --- Flax.flaxproj | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Flax.flaxproj b/Flax.flaxproj index a77fe9485..d6cf594a8 100644 --- a/Flax.flaxproj +++ b/Flax.flaxproj @@ -4,7 +4,7 @@ "Major": 1, "Minor": 12, "Revision": 0, - "Build": 6908 + "Build": 6909 }, "Company": "Flax", "Copyright": "Copyright (c) 2012-2026 Wojciech Figat. All rights reserved.", @@ -14,6 +14,14 @@ "UseCSharp": true, "UseLargeWorlds": false, "UseDotNet": true, - "UseSDL": true + "Windows": { + "UseSDL": false, + }, + "Mac": { + "UseSDL": false, + }, + "Linux": { + "UseSDL": true, + }, } -} \ No newline at end of file +}