Fatal Fury 1 Boss Hack Cleanup

This commit is contained in:
WandeingLagomorph793 2020-11-20 07:51:42 -08:00 committed by GitHub
parent d4004fd471
commit 95b3be7d1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18744,7 +18744,7 @@ struct BurnDriver BurnDrvLb2b = {
0x1000, 320, 224, 4, 3
};
// The King of Fighters '97 (Imitation Playstation final improved version 2016-10-29)
// The King of Fighters '97 (Imitation Playstation final improved version 2016-10-29 by EGCG/EGGT)
static struct BurnRomInfo kof97psRomDesc[] = {
{ "232-p1ps.p1", 0x100000, 0xfc25feec, 1 | BRF_ESS | BRF_PRG }, // 0 68K code
@ -20320,3 +20320,37 @@ struct BurnDriver BurnDrvNsmb = {
NeoInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
0x1000, 304, 224, 4, 3
};
// Fatal Fury - King of Fighters / Garou Densetsu - shukumei no tatakai (Boss Hack by Yumeji1768)
/* MVS AND AES VERSION */
static struct BurnRomInfo fatfury1bhRomDesc[] = {
{ "033-p1bh.p1", 0x080000, 0xfc051e1d, 1 | BRF_ESS | BRF_PRG }, // 0 68K code / TC534200
{ "033-p2.p2", 0x020000, 0xc473af1c, 1 | BRF_ESS | BRF_PRG }, // 1 / TC531024
{ "033-s1.s1", 0x020000, 0x3c3bdf8c, 2 | BRF_GRA }, // 2 Text layer tiles / TC531000
{ "033-c1.c1", 0x100000, 0x74317e54, 3 | BRF_GRA }, // 3 Sprite data / TC538200
{ "033-c2.c2", 0x100000, 0x5bb952f3, 3 | BRF_GRA }, // 4 / TC538200
{ "033-c3.c3", 0x100000, 0x9b714a7c, 3 | BRF_GRA }, // 5 / TC538200
{ "033-c4.c4", 0x100000, 0x9397476a, 3 | BRF_GRA }, // 6 / TC538200
{ "033-m1.m1", 0x020000, 0x5be10ffd, 4 | BRF_ESS | BRF_PRG }, // 7 Z80 code / TC531001
{ "033-v1.v1", 0x100000, 0x212fd20d, 5 | BRF_SND }, // 8 Sound data / TC538200
{ "033-v2.v2", 0x100000, 0xfa2ae47f, 5 | BRF_SND }, // 9 / TC538200
};
STDROMPICKEXT(fatfury1bh, fatfury1bh, neogeo)
STD_ROM_FN(fatfury1bh)
struct BurnDriver BurnDrvFatFury1bh = {
"fatfury1bh", "fatfury1", "neogeo", NULL, "1992",
"Fatal Fury - King of Fighters / Garou Densetsu - shukumei no tatakai (Boss Hack by Yumeji)\0", NULL, "SNK", "Neo Geo MVS",
L"Fatal Fury - King of Fighters (Boss Hack by Yumeji)\0\u9913\u72FC\u4F1D\u8AAC - \u5BBF\u547D\u306E\u95D8\u3044 (NGM-033)(NGH-033)\0", NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE | BDF_HACK | BDF_HISCORE_SUPPORTED, 2, HARDWARE_PREFIX_CARTRIDGE | HARDWARE_SNK_NEOGEO, GBF_VSFIGHT, FBF_FATFURY,
NULL, fatfury1RomInfo, fatfury1RomName, NULL, NULL, NULL, NULL, neogeoInputInfo, neogeoDIPInfo,
NeoInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
0x1000, 320, 224, 4, 3
};