mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 22:43:01 +00:00
lower the game boy volume
This commit is contained in:
parent
fedb8cdd94
commit
acfd9fabd0
1 changed files with 2 additions and 2 deletions
|
@ -9,8 +9,8 @@
|
|||
|
||||
void DivPlatformGB::acquire(int& l, int& r) {
|
||||
GB_advance_cycles(gb,2);
|
||||
l=gb->apu_output.final_sample.left<<3;
|
||||
r=gb->apu_output.final_sample.right<<3;
|
||||
l=gb->apu_output.final_sample.left<<2;
|
||||
r=gb->apu_output.final_sample.right<<2;
|
||||
}
|
||||
|
||||
void DivPlatformGB::updateWave() {
|
||||
|
|
Loading…
Reference in a new issue