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
path: root/Apps
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-02-21 23:00:58 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-02-21 23:00:58 +0300
commitad2caa99e09a20cd3b09b6f319d0abde6d589343 (patch)
treedeed3604a9597c14323ce8f09e71b2f5c136f139 /Apps
parent855ec1bcd2ba2f060966e024aec732833d2eecee (diff)
Many different fixes
Diffstat (limited to 'Apps')
-rw-r--r--Apps/AppTypeCollection.cs2
-rw-r--r--Apps/FdsGame.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Apps/AppTypeCollection.cs b/Apps/AppTypeCollection.cs
index 3c87a9c6..a2a7166d 100644
--- a/Apps/AppTypeCollection.cs
+++ b/Apps/AppTypeCollection.cs
@@ -31,7 +31,7 @@ namespace com.clusterrr.hakchi_gui
new AppInfo
{
Class = typeof(NesUGame),
- Extensions = new string[] {".unf", ".unif", ".nes", ".fds" },
+ Extensions = new string[] {".unf", ".unif", ".nes" },
DefaultApps = new string[] {"/bin/nes"},
Prefix = 'I',
DefaultCover = Resources.blank_jp
diff --git a/Apps/FdsGame.cs b/Apps/FdsGame.cs
index ed19e798..4045f667 100644
--- a/Apps/FdsGame.cs
+++ b/Apps/FdsGame.cs
@@ -23,7 +23,7 @@ namespace com.clusterrr.hakchi_gui
{
}
- public static bool Patch(string inputFileName, ref byte[] rawRomData, ref char prefix, ref string application, ref string outputFileName, ref string args, ref Image cover, ref uint crc32)
+ public static bool Patch(string inputFileName, ref byte[] rawRomData, ref char prefix, ref string application, ref string outputFileName, ref string args, ref Image cover, ref byte saveCount, ref uint crc32)
{
FindPatch(ref rawRomData, inputFileName, crc32);
if (Encoding.ASCII.GetString(rawRomData, 0, 3) == "FDS") // header? cut it!