From df21621ce7b5b74054e6c4a8bb349e257f7990f5 Mon Sep 17 00:00:00 2001 From: cam900 Date: Tue, 21 Jun 2022 06:36:41 +0900 Subject: [PATCH] Add drums mode in here, too --- src/gui/presets.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/gui/presets.cpp b/src/gui/presets.cpp index 5fa4d75e..d85865f7 100644 --- a/src/gui/presets.cpp +++ b/src/gui/presets.cpp @@ -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.");