From 27dbc47419b770451c815958c467204b6bfc3564 Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Mon, 12 Aug 2024 19:52:36 +0100 Subject: [PATCH] Enable loading of PCX textures from FM folders --- project/code/TMV/TextureLoader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/code/TMV/TextureLoader.cs b/project/code/TMV/TextureLoader.cs index 20d5364..54a081e 100644 --- a/project/code/TMV/TextureLoader.cs +++ b/project/code/TMV/TextureLoader.cs @@ -34,8 +34,8 @@ public partial class TextureLoader private void RegisterFmTexturePaths() { - // TODO: Load DDS BMP PCX GIF CEL - string[] validExtensions = { "png", "tga" }; + // TODO: Load DDS BMP GIF CEL + string[] validExtensions = { "png", "tga", "pcx" }; var famOptions = new EnumerationOptions { MatchCasing = MatchCasing.CaseInsensitive }; var textureOptions = new EnumerationOptions