From 0b1d2e24d75f8e6e84c24e6e350b70232699344c Mon Sep 17 00:00:00 2001 From: Natt Akuma Date: Sat, 13 Jan 2024 00:17:45 +0700 Subject: [PATCH] Change default GBA DMA DAC bit depth to 9 --- src/gui/sysConf.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gui/sysConf.cpp b/src/gui/sysConf.cpp index ad8b391b4..17d9e40d9 100644 --- a/src/gui/sysConf.cpp +++ b/src/gui/sysConf.cpp @@ -415,9 +415,10 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl break; } case DIV_SYSTEM_GBA_DMA: { - int dacDepth=flags.getInt("dacDepth",6); + int dacDepth=flags.getInt("dacDepth",9); - if (CWSliderInt("DAC bit depth (reduces output rate)",&dacDepth,6,9)) { + ImGui::Text("DAC bit depth (reduces output rate):"); + if (CWSliderInt("##DACDepth",&dacDepth,6,9)) { if (dacDepth<6) dacDepth=6; if (dacDepth>9) dacDepth=9; altered=true;