Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-07 20:16:04 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-07 20:16:04 +0300
commitef067b9227b095b8a564ff09fe2c960363e9cac8 (patch)
tree16967ba9c1c376820274a151b47c15fb5f43958d /Apps/NesGame.cs
parent0ceac8f49bba9751c66a5cf63fcad9cec3399440 (diff)
SNES carts database
Diffstat (limited to 'Apps/NesGame.cs')
-rw-r--r--Apps/NesGame.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Apps/NesGame.cs b/Apps/NesGame.cs
index f075e038..52d533e5 100644
--- a/Apps/NesGame.cs
+++ b/Apps/NesGame.cs
@@ -187,7 +187,7 @@ namespace com.clusterrr.hakchi_gui
{
try
{
- var xmlDataBasePath = System.IO.Path.Combine(System.IO.Path.Combine(Program.BaseDirectoryInternal, "data"), "nescarts.xml");
+ var xmlDataBasePath = Path.Combine(System.IO.Path.Combine(Program.BaseDirectoryInternal, "data"), "nescarts.xml");
Debug.WriteLine("Loading " + xmlDataBasePath);
if (File.Exists(xmlDataBasePath))
@@ -219,14 +219,13 @@ namespace com.clusterrr.hakchi_gui
};
}
}
- Debug.WriteLine(string.Format("XML loading done, {0} roms total", gameInfoCache.Count));
+ Debug.WriteLine(string.Format("NES XML loading done, {0} roms total", gameInfoCache.Count));
}
catch (Exception ex)
{
Debug.WriteLine(ex.Message + ex.StackTrace);
}
}
-
}
}