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>2017-10-12 07:15:14 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-12 07:15:14 +0300
commit124f65ddedbd41a2179c8b61fd6d634fa599aaf9 (patch)
tree6a6c2f9a0837c1cf8eddfed4f71894bc69e06494 /Apps
parent248c0ed6fcdccbdbf6f00a7e49c5671c33f3c431 (diff)
Scripts autoupdate, fixes, optimization
Diffstat (limited to 'Apps')
-rw-r--r--Apps/SnesGame.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Apps/SnesGame.cs b/Apps/SnesGame.cs
index 24dc82a1..185159f5 100644
--- a/Apps/SnesGame.cs
+++ b/Apps/SnesGame.cs
@@ -278,14 +278,16 @@ namespace com.clusterrr.hakchi_gui
string gameTitle;
SnesRomHeader romHeader = GetCorrectHeader(rawRomData, out romType, out gameTitle);
+ /*
if (romType == SnesRomType.LoRom)
rawRomData[0x7FD9] = 0x01; // Force NTSC
else
rawRomData[0xFFD9] = 0x01; // Force NTSC
+ */
Debug.WriteLine($"Game title: {gameTitle}");
Debug.WriteLine($"ROM type: {romType}");
- ushort presetId = 0; // 0x1011;
+ ushort presetId = 0;
ushort chip = 0;
if (SfxTypes.Contains(romHeader.RomType)) // Super FX chip
{