Add drums mode in here, too

This commit is contained in:
cam900 2022-06-21 06:36:41 +09:00 committed by GitHub
parent 41135f4a95
commit df21621ce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

View File

@ -1972,6 +1972,14 @@ void FurnaceGUI::initSystemPresets() {
0
}
));
cat.systems.push_back(FurnaceGUISysDef(
"Dynax/Nakanihon 3rd generation hardware (drums mode)", {
DIV_SYSTEM_AY8910, 64, 0, 0, // AY or YM, optional - 1.79MHz or 3.58MHz; various per game
DIV_SYSTEM_OPLL_DRUMS, 64, 0, 0,
DIV_SYSTEM_MSM6295, 64, 0, 6, // 1.023MHz mostly
0
}
));
cat.systems.push_back(FurnaceGUISysDef(
"Dynax/Nakanihon Real Break", {
DIV_SYSTEM_OPLL, 64, 0, 0,
@ -1979,6 +1987,13 @@ void FurnaceGUI::initSystemPresets() {
0
}
));
cat.systems.push_back(FurnaceGUISysDef(
"Dynax/Nakanihon Real Break (drums mode)", {
DIV_SYSTEM_OPLL_DRUMS, 64, 0, 0,
DIV_SYSTEM_YMZ280B, 64, 0, 0,
0
}
));
sysCategories.push_back(cat);
cat=FurnaceGUISysCategory("DefleMask-compatible","these configurations are compatible with DefleMask.\nselect this if you need to save as .dmf or work with that program.");