From 115c6a445c519103eb7aaeb09930f104d94228fc Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Tue, 10 Oct 2017 14:36:32 +0300 Subject: Translations, cleanup, release v2.21 --- Apps/AppTypeCollection.cs | 3 --- Apps/FdsGame.cs | 3 --- Apps/GameGearGame.cs | 2 -- Apps/GbcGame.cs | 2 -- Apps/ISupportsGameGenie.cs | 7 +------ Apps/SnesGame.cs | 6 +++--- 6 files changed, 4 insertions(+), 19 deletions(-) (limited to 'Apps') diff --git a/Apps/AppTypeCollection.cs b/Apps/AppTypeCollection.cs index 112d3031..3c87a9c6 100644 --- a/Apps/AppTypeCollection.cs +++ b/Apps/AppTypeCollection.cs @@ -1,9 +1,6 @@ using com.clusterrr.hakchi_gui.Properties; using System; -using System.Collections.Generic; using System.Drawing; -using System.Linq; -using System.Text; using System.Text.RegularExpressions; namespace com.clusterrr.hakchi_gui diff --git a/Apps/FdsGame.cs b/Apps/FdsGame.cs index 5f862cd8..ed19e798 100644 --- a/Apps/FdsGame.cs +++ b/Apps/FdsGame.cs @@ -1,10 +1,7 @@ #pragma warning disable 0108 -using com.clusterrr.hakchi_gui.Properties; using System; using System.Drawing; -using System.IO; using System.Text; -using System.Text.RegularExpressions; namespace com.clusterrr.hakchi_gui { diff --git a/Apps/GameGearGame.cs b/Apps/GameGearGame.cs index c07dd60b..42f7e627 100644 --- a/Apps/GameGearGame.cs +++ b/Apps/GameGearGame.cs @@ -1,6 +1,4 @@ #pragma warning disable 0108 -using com.clusterrr.hakchi_gui.Properties; -using System.Drawing; namespace com.clusterrr.hakchi_gui { diff --git a/Apps/GbcGame.cs b/Apps/GbcGame.cs index 49ba42eb..49f7ec65 100644 --- a/Apps/GbcGame.cs +++ b/Apps/GbcGame.cs @@ -1,6 +1,4 @@ #pragma warning disable 0108 -using com.clusterrr.hakchi_gui.Properties; -using System.Drawing; namespace com.clusterrr.hakchi_gui { diff --git a/Apps/ISupportsGameGenie.cs b/Apps/ISupportsGameGenie.cs index 98803c6d..cd8b59b8 100644 --- a/Apps/ISupportsGameGenie.cs +++ b/Apps/ISupportsGameGenie.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace com.clusterrr.hakchi_gui +namespace com.clusterrr.hakchi_gui { interface ISupportsGameGenie { diff --git a/Apps/SnesGame.cs b/Apps/SnesGame.cs index e0dbad22..24dc82a1 100644 --- a/Apps/SnesGame.cs +++ b/Apps/SnesGame.cs @@ -16,7 +16,7 @@ namespace com.clusterrr.hakchi_gui { public enum SnesRomType { LoRom = 0x14, HiRom = 0x15 }; - const string DefaultArgs = "--volume 100 -rollback-snapshot-period 600"; + const string DefaultCanoeArgs = "--volume 100 -rollback-snapshot-period 600"; static List SfxTypes = new List() { 0x13, 0x14, 0x15, 0x1a }; static List Dsp1Types = new List() { 0x03, 0x05 }; static List SA1Types = new List() { 0x34, 0x35 }; @@ -58,7 +58,7 @@ namespace com.clusterrr.hakchi_gui { "YOSSY'S ISLAND", 0x1243 }, { "FINAL FIGHT", 0x100E }, { "DIDDY'S KONG QUEST", 0x105D }, - { "KIRBY'S DREAM LAND 3", 0x10A2 }, + //{ "KIRBY'S DREAM LAND 3", 0x10A2 }, // Reported as problematic, using ID from Mario RPG { "BREATH OF FIRE 2", 0x1068 }, { "FINAL FIGHT 2", 0x10E1 }, { "MEGAMAN X2", 0x1117 }, @@ -174,7 +174,7 @@ namespace com.clusterrr.hakchi_gui if (ConfigIni.ConsoleType == MainForm.ConsoleType.SNES || ConfigIni.ConsoleType == MainForm.ConsoleType.SuperFamicom) { application = "/bin/clover-canoe-shvc-wr -rom"; - args = DefaultArgs; + args = DefaultCanoeArgs; if (ext.ToLower() != ".sfrom") // Need to patch for canoe { Debug.WriteLine($"Trying to convert {inputFileName}"); -- cgit v1.2.3