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-02-16 19:01:56 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-16 19:01:56 +0300
commit737370fc4c9c8aa51092dc82f3ac8f8bab7e5743 (patch)
tree146dff23b377321121f6dbbebf0236d39e509725 /NesFile.cs
parenta860691692d64302185a03e9b913174a32e16931 (diff)
Minor fixes
Diffstat (limited to 'NesFile.cs')
-rw-r--r--NesFile.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/NesFile.cs b/NesFile.cs
index f084b2ee..9a977d6c 100644
--- a/NesFile.cs
+++ b/NesFile.cs
@@ -29,7 +29,6 @@ namespace com.clusterrr.Famicom
public NesFile(byte[] data)
{
-
if (data[0] != 0x4E ||
data[1] != 0x45 ||
data[2] != 0x53 ||
@@ -58,8 +57,6 @@ namespace com.clusterrr.Famicom
Mapper = (byte)((data[6] >> 4) | (data[7] & 0xF0));
- data[7] = 0;
-
VSunisystem = (data[7] & 1) != 0;
PlayChoice10 = (data[7] & (1 << 1)) != 0;