Skip to content

Commit 314201a

Browse files
committed
Merge branch 'master' of https://github.com/finalburnneo/FBNeo into finalburnneo-master
2 parents 24bde55 + 255d453 commit 314201a

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
################################################################################
1+
################################################################################
22
# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
33
################################################################################
44

55
/.vs
66
.vscode
77
/projectfiles/visualstudio-2019/enc_temp_folder
8+
/projectfiles/visualstudio-2019/fbneo_vs2019.vcxproj.user
9+
/projectfiles/visualstudio-2022/enc_temp_folder
10+
/projectfiles/visualstudio-2022/fbneo_vs2022.vcxproj.user
811
.DS_Store
912
obj/
1013
._*

projectfiles/visualstudio-2019/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Debug
22
Release
33
generated
44
.vs
5-
fba_vs2010.vcxproj.user
5+
fbneo_vs2019.vcxproj.user

src/burn/drv/megadrive/d_megadrive.cpp

+19
Original file line numberDiff line numberDiff line change
@@ -55762,3 +55762,22 @@ struct BurnDriver BurnDrvmd_tkzs = {
5576255762
&bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3
5576355763
};
5576455764

55765+
55766+
//Hayato's Journey
55767+
//https://master-linkuei.itch.io/hayatos-journey
55768+
static struct BurnRomInfo md_hayatosjRomDesc[] = {
55769+
{ "Hayato's Journey v1_0.bin", 4194304, 0x7f54be40, BRF_PRG | SEGA_MD_ROM_LOAD16_WORD_SWAP | SEGA_MD_ROM_OFFS_000000 },
55770+
};
55771+
55772+
STD_ROM_PICK(md_hayatosj)
55773+
STD_ROM_FN(md_hayatosj)
55774+
55775+
struct BurnDriver BurnDrvmd_hayatosj = {
55776+
"md_hayatosj", NULL, NULL, NULL, "2024",
55777+
"Hayato's Journey (HB)\0", NULL, "Master Linkuei", "Sega Megadrive",
55778+
NULL, NULL, NULL, NULL,
55779+
BDF_GAME_WORKING | BDF_16BIT_ONLY | BDF_HOMEBREW, 2, HARDWARE_SEGA_MEGADRIVE, GBF_MISC, 0,
55780+
MegadriveGetZipName, md_hayatosjRomInfo, md_hayatosjRomName, NULL, NULL, NULL, NULL, MegadriveInputInfo, MegadriveDIPInfo,
55781+
MegadriveInit, MegadriveExit, MegadriveFrame, MegadriveDraw, MegadriveScan,
55782+
&bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3
55783+
};

0 commit comments

Comments
 (0)