From 689fab2ba4fd8661d4391f4e380c019bdb51d370 Mon Sep 17 00:00:00 2001 From: envision3d Date: Thu, 26 Feb 2026 16:46:46 -0600 Subject: [PATCH] add linux platform case to fix build --- Source/Engine/Video/Video.Build.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Engine/Video/Video.Build.cs b/Source/Engine/Video/Video.Build.cs index ed9ed7c4e..70da3d010 100644 --- a/Source/Engine/Video/Video.Build.cs +++ b/Source/Engine/Video/Video.Build.cs @@ -32,6 +32,9 @@ public class Video : EngineModule options.OutputFiles.Add("mfreadwrite.lib"); options.OutputFiles.Add("mfuuid.lib"); break; + case TargetPlatform.Linux: + // Not implemented + break; case TargetPlatform.XboxOne: case TargetPlatform.XboxScarlett: // Media Foundation @@ -64,7 +67,7 @@ public class Video : EngineModule options.CompileEnv.PreprocessorDefinitions.Add("VIDEO_API_ANDROID"); break; case TargetPlatform.Web: - // No implemented + // Not implemented break; default: throw new InvalidPlatformException(options.Platform.Target); }