From 9bead3304e1cffb0398c4e47e52f8d1e73e60e58 Mon Sep 17 00:00:00 2001 From: sweiland-openrails <118388365+sweiland-openrails@users.noreply.github.com> Date: Thu, 15 Feb 2024 12:01:04 +0100 Subject: [PATCH] Changed debug routes.json from d:\content to c:\content. Is being read instead from GitHub when environment variable TstLoadContentAndInstalled is set to 1. --- Source/ORTS.Settings/ContentRouteSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ORTS.Settings/ContentRouteSettings.cs b/Source/ORTS.Settings/ContentRouteSettings.cs index ea37f2d4d7..e373f25b11 100644 --- a/Source/ORTS.Settings/ContentRouteSettings.cs +++ b/Source/ORTS.Settings/ContentRouteSettings.cs @@ -157,7 +157,7 @@ public void LoadContentAndInstalled() } // only for debug purposes - string definedContentJsonName = @"d:\content\routes.json"; + string definedContentJsonName = @"c:\content\routes.json"; string definedContentJsonDirectoryName = Path.GetTempFileName(); File.Delete(definedContentJsonDirectoryName);