mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2025-03-06 14:27:44 +00:00
Default SCSP balance set to 0. Was erroneously set at +50%.
This commit is contained in:
parent
79d24d403f
commit
5709010cb2
|
@ -43,7 +43,7 @@ class CSoundBoardConfig
|
||||||
public:
|
public:
|
||||||
bool emulateSound; // sound board emulation (enabled if true)
|
bool emulateSound; // sound board emulation (enabled if true)
|
||||||
|
|
||||||
// Master/slave SCSP relative balance (0-100, with 100 meaning master volume doubled, slave silenced)
|
// Master/slave SCSP relative balance (-100-100, with 100 meaning master volume doubled, slave silenced)
|
||||||
inline void SetSCSPBalance(int bal)
|
inline void SetSCSPBalance(int bal)
|
||||||
{
|
{
|
||||||
if (bal > 100)
|
if (bal > 100)
|
||||||
|
@ -70,7 +70,7 @@ public:
|
||||||
CSoundBoardConfig(void)
|
CSoundBoardConfig(void)
|
||||||
{
|
{
|
||||||
emulateSound = true;
|
emulateSound = true;
|
||||||
scspBalance = 50;
|
scspBalance = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in a new issue