Skip to content

Commit

Permalink
add hiscore support for Darius Gaiden
Browse files Browse the repository at this point in the history
  • Loading branch information
barbudreadmon authored Jul 8, 2021
1 parent 7ed4b59 commit b8cf31c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/burn/drv/taito/d_taitof3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,8 @@ static INT32 DrvDoReset(INT32 full_reset)
watchdog = 0;
previous_coin = 0;

HiscoreReset();

return 0;
}

Expand Down Expand Up @@ -3364,7 +3366,7 @@ struct BurnDriver BurnDrvDariusg = {
"dariusg", NULL, NULL, NULL, "1994",
"Darius Gaiden - Silver Hawk (Ver 2.5O 1994/09/19)\0", NULL, "Taito Corporation Japan", "Taito F3 System",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING, 2, HARDWARE_TAITO_MISC, GBF_HORSHOOT, 0,
BDF_GAME_WORKING | BDF_HISCORE_SUPPORTED, 2, HARDWARE_TAITO_MISC, GBF_HORSHOOT, 0,
NULL, dariusgRomInfo, dariusgRomName, NULL, NULL, NULL, NULL, F3InputInfo, F3DIPInfo,
dariusgInit, DrvExit, DrvFrame, DrvDraw, DrvScan, &TaitoF3PalRecalc, 0x2000,
320, 232, 4, 3
Expand Down Expand Up @@ -3401,7 +3403,7 @@ struct BurnDriver BurnDrvDariusgj = {
"dariusgj", "dariusg", NULL, NULL, "1994",
"Darius Gaiden - Silver Hawk (Ver 2.5J 1994/09/19)\0", NULL, "Taito Corporation", "Taito F3 System",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE, 2, HARDWARE_TAITO_MISC, GBF_HORSHOOT, 0,
BDF_GAME_WORKING | BDF_CLONE | BDF_HISCORE_SUPPORTED, 2, HARDWARE_TAITO_MISC, GBF_HORSHOOT, 0,
NULL, dariusgjRomInfo, dariusgjRomName, NULL, NULL, NULL, NULL, F3InputInfo, F3DIPInfo,
dariusgInit, DrvExit, DrvFrame, DrvDraw, DrvScan, &TaitoF3PalRecalc, 0x2000,
320, 232, 4, 3
Expand Down Expand Up @@ -3438,7 +3440,7 @@ struct BurnDriver BurnDrvDariusgu = {
"dariusgu", "dariusg", NULL, NULL, "1994",
"Darius Gaiden - Silver Hawk (Ver 2.5A 1994/09/19)\0", NULL, "Taito America Corporation", "Taito F3 System",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE, 2, HARDWARE_TAITO_MISC, GBF_HORSHOOT, 0,
BDF_GAME_WORKING | BDF_CLONE | BDF_HISCORE_SUPPORTED, 2, HARDWARE_TAITO_MISC, GBF_HORSHOOT, 0,
NULL, dariusguRomInfo, dariusguRomName, NULL, NULL, NULL, NULL, F3InputInfo, F3DIPInfo,
dariusgInit, DrvExit, DrvFrame, DrvDraw, DrvScan, &TaitoF3PalRecalc, 0x2000,
320, 232, 4, 3
Expand Down Expand Up @@ -3475,7 +3477,7 @@ struct BurnDriver BurnDrvDariusgx = {
"dariusgx", NULL, NULL, NULL, "1994",
"Darius Gaiden - Silver Hawk Extra Version (Ver 2.7J 1995/03/06) (Official Hack)\0", NULL, "Taito Corporation", "Taito F3 System",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING, 2, HARDWARE_TAITO_MISC, GBF_HORSHOOT, 0,
BDF_GAME_WORKING | BDF_HISCORE_SUPPORTED, 2, HARDWARE_TAITO_MISC, GBF_HORSHOOT, 0,
NULL, dariusgxRomInfo, dariusgxRomName, NULL, NULL, NULL, NULL, F3InputInfo, F3DIPInfo,
dariusgInit, DrvExit, DrvFrame, DrvDraw, DrvScan, &TaitoF3PalRecalc, 0x2000,
320, 232, 4, 3
Expand Down

0 comments on commit b8cf31c

Please sign in to comment.