Merge branch 'master' of https://github.com/finalburnneo/FBNeo into finalburnneo-master

This commit is contained in:
barbudreadmon 2024-07-27 07:27:53 +02:00
commit 314201a806
3 changed files with 24 additions and 2 deletions

5
.gitignore vendored
View File

@ -1,10 +1,13 @@
################################################################################ ################################################################################
# This .gitignore file was automatically created by Microsoft(R) Visual Studio. # This .gitignore file was automatically created by Microsoft(R) Visual Studio.
################################################################################ ################################################################################
/.vs /.vs
.vscode .vscode
/projectfiles/visualstudio-2019/enc_temp_folder /projectfiles/visualstudio-2019/enc_temp_folder
/projectfiles/visualstudio-2019/fbneo_vs2019.vcxproj.user
/projectfiles/visualstudio-2022/enc_temp_folder
/projectfiles/visualstudio-2022/fbneo_vs2022.vcxproj.user
.DS_Store .DS_Store
obj/ obj/
._* ._*

View File

@ -2,4 +2,4 @@ Debug
Release Release
generated generated
.vs .vs
fba_vs2010.vcxproj.user fbneo_vs2019.vcxproj.user

View File

@ -55762,3 +55762,22 @@ struct BurnDriver BurnDrvmd_tkzs = {
&bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3 &bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3
}; };
//Hayato's Journey
//https://master-linkuei.itch.io/hayatos-journey
static struct BurnRomInfo md_hayatosjRomDesc[] = {
{ "Hayato's Journey v1_0.bin", 4194304, 0x7f54be40, BRF_PRG | SEGA_MD_ROM_LOAD16_WORD_SWAP | SEGA_MD_ROM_OFFS_000000 },
};
STD_ROM_PICK(md_hayatosj)
STD_ROM_FN(md_hayatosj)
struct BurnDriver BurnDrvmd_hayatosj = {
"md_hayatosj", NULL, NULL, NULL, "2024",
"Hayato's Journey (HB)\0", NULL, "Master Linkuei", "Sega Megadrive",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_16BIT_ONLY | BDF_HOMEBREW, 2, HARDWARE_SEGA_MEGADRIVE, GBF_MISC, 0,
MegadriveGetZipName, md_hayatosjRomInfo, md_hayatosjRomName, NULL, NULL, NULL, NULL, MegadriveInputInfo, MegadriveDIPInfo,
MegadriveInit, MegadriveExit, MegadriveFrame, MegadriveDraw, MegadriveScan,
&bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3
};