From 7c3df5fecabf12bbcd7b4cd8f8aa002ec52718e8 Mon Sep 17 00:00:00 2001 From: nzgamer41 Date: Mon, 2 Dec 2019 19:34:32 +1300 Subject: [PATCH] added crcs for 3d cosplay mahjong, akai katana shin, battle fantasia network edition, chaos code 1.03 and 2.11 --- OpenParrot/src/Utility/GameDetect.cpp | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/OpenParrot/src/Utility/GameDetect.cpp b/OpenParrot/src/Utility/GameDetect.cpp index cda5dcc..660b08c 100644 --- a/OpenParrot/src/Utility/GameDetect.cpp +++ b/OpenParrot/src/Utility/GameDetect.cpp @@ -49,7 +49,6 @@ void GameDetect::DetectCurrentGame() NesicaKey = NesicaKey::None; isNesica = true; break; - case 0x6e67076f: currentGame = GameID::Nesica; NesicaKey = NesicaKey::BlazBlueCentralFriction; @@ -471,6 +470,31 @@ void GameDetect::DetectCurrentGame() case 0x72c27333: currentGame = GameID::JLeague; break; + case 0x43de771f: // 3D Cosplay Mahjong (runs in windowed mode permanently for some reason) + currentGame = GameID::Nesica; + NesicaKey = NesicaKey::None; + isNesica = true; + break; + case 0x04ce5f18: // Akai Katana Shin for NESiCAxLive (was working but now isnt?) + currentGame = GameID::Nesica; + NesicaKey = NesicaKey::None; + isNesica = true; + break; + case 0xaf3d84cc: //Battle Fantasia Network Edition for NESiCAxLive (I/O not working) + currentGame = GameID::Nesica; + NesicaKey = NesicaKey::None; + isNesica = true; + break; + case 0xac86efec: //Chaos Code v1.03 + currentGame = GameID::Nesica; + NesicaKey = NesicaKey::None; + isNesica = true; + break; + case 0xa742a607: //Chaos Code v2.11 + currentGame = GameID::Nesica; + NesicaKey = NesicaKey::None; + isNesica = true; + break; #ifdef _AMD64_ case 0x80ebd207: currentGame = GameID::Theatrhythm;