From d6135116f168fb7865a12eb8a51646efb9a07913 Mon Sep 17 00:00:00 2001 From: Marc Hernandez Date: Thu, 16 Oct 2025 02:31:11 -0700 Subject: [PATCH] Little godot hack in config --- cfg/Config.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cfg/Config.cs b/cfg/Config.cs index ea65bce..c2d8df4 100644 --- a/cfg/Config.cs +++ b/cfg/Config.cs @@ -56,6 +56,13 @@ namespace lib try { + if( !File.Exists( filename ) ) + { + if( filename.StartsWith( "res://" ) ) + filename.Replace( "res://", "" ); + } + + if( File.Exists( filename ) ) { FileStream fs = new FileStream( filename, FileMode.Open, FileAccess.Read );