Change default GBA DMA DAC bit depth to 9

This commit is contained in:
Natt Akuma 2024-01-13 00:17:45 +07:00
parent f199fe2af8
commit 0b1d2e24d7

View file

@ -415,9 +415,10 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl
break; break;
} }
case DIV_SYSTEM_GBA_DMA: { 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<6) dacDepth=6;
if (dacDepth>9) dacDepth=9; if (dacDepth>9) dacDepth=9;
altered=true; altered=true;