mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 17:45:10 +00:00
Add drums mode in here, too
This commit is contained in:
parent
41135f4a95
commit
df21621ce7
1 changed files with 15 additions and 0 deletions
|
@ -1972,6 +1972,14 @@ void FurnaceGUI::initSystemPresets() {
|
||||||
0
|
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(
|
cat.systems.push_back(FurnaceGUISysDef(
|
||||||
"Dynax/Nakanihon Real Break", {
|
"Dynax/Nakanihon Real Break", {
|
||||||
DIV_SYSTEM_OPLL, 64, 0, 0,
|
DIV_SYSTEM_OPLL, 64, 0, 0,
|
||||||
|
@ -1979,6 +1987,13 @@ void FurnaceGUI::initSystemPresets() {
|
||||||
0
|
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);
|
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.");
|
cat=FurnaceGUISysCategory("DefleMask-compatible","these configurations are compatible with DefleMask.\nselect this if you need to save as .dmf or work with that program.");
|
||||||
|
|
Loading…
Reference in a new issue