diff options
author | 2018-12-25 13:54:28 +0900 | |
---|---|---|
committer | 2018-12-25 13:54:28 +0900 | |
commit | da6ebc1ec4007f7d2470f8418f2bea9e4997bdd4 (patch) | |
tree | edae77c2f36683f204268eb777720d8834254d04 /src/devices/sound/aicadsp.cpp | |
parent | 08106c34699963f379ad71bce56a8947001bbb7e (diff) |
aica.cpp : Minor correction, Add notes, Remove some unused/unnecessary values, Implement 18bit output, (nw)
hikaru.cpp : Add notes
Diffstat (limited to 'src/devices/sound/aicadsp.cpp')
-rw-r--r-- | src/devices/sound/aicadsp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/aicadsp.cpp b/src/devices/sound/aicadsp.cpp index 4cf56872401..30881df4fb9 100644 --- a/src/devices/sound/aicadsp.cpp +++ b/src/devices/sound/aicadsp.cpp @@ -58,7 +58,7 @@ static int32_t UNPACK(uint16_t val) void AICADSP::init() { memset(this,0,sizeof(*this)); - RBL=0x8000; + RBL=(8 * 1024); // Initial RBL is 0 Stopped=1; } |