From 99ce12478ce159388dcc6e8111d91f9f8a13b6a6 Mon Sep 17 00:00:00 2001 From: n-a-c-h <> Date: Tue, 28 Oct 2003 17:19:14 +0000 Subject: [PATCH] 5 hacks removed --- zsnes/src/initc.c | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/zsnes/src/initc.c b/zsnes/src/initc.c index 8848f9fb..48cf7f6f 100755 --- a/zsnes/src/initc.c +++ b/zsnes/src/initc.c @@ -407,14 +407,6 @@ void headerhack() //These next fiew look like RAM init hacks, should be looked into - //Horai Gakuen no Bouken! (J) - //90 Minutes - European Prime Goal (E) - if (!strncmp((RomData+Hi), "HORAI-GAKUEN ", 16) || - !strncmp((RomData+Lo), "EUROPEAN PRIME G", 16)) - { - memset(spcRam, 0, 65472); - } - //Should be Super Famista (J), uses non-standard characters if (!strncmp((RomData+Lo),"\x0bd\x0b0\x0ca\x0df\x0b0\x0cc\x0a7\x0d0\x0bd\x0c0 " ,16)) { @@ -578,18 +570,6 @@ void headerhack() opexec358cph = 47; } - /* - Shin Megami Tensei (J), Shin Megami Tensei if... (J), - Shin Megami Tensei II (J), but does not fix AGTP translations. - - Asm says "Lamborgini Challenge - -p 110" and "jne .nodigitaldevil" - */ - if (!strncmp((RomData+Lo),"DIGI" ,4)) - { - opexec268 = 187; - opexec358 = 187; - } - //Super Final Match Tennis (J) if (!strncmp((RomData+Lo),"SP F", 4)) { @@ -706,14 +686,6 @@ void headerhack() opexec358cph = 47; } - //Which game is this? - if (!strncmp((RomData+Hi), "Donk", 4) && ramsize == 2048) - { - //asm volatile("int $3"); - ramsize = 4096; - ramsizeand = 4095; - } - return; }