mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
GB: lower volume
somehow a fix brought in a bug
This commit is contained in:
parent
496501803f
commit
d882fd33f8
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@
|
|||
void DivPlatformGB::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
||||
for (size_t i=start; i<start+len; i++) {
|
||||
GB_advance_cycles(gb,16);
|
||||
bufL[i]=gb->apu_output.final_sample.left<<2;
|
||||
bufR[i]=gb->apu_output.final_sample.right<<2;
|
||||
bufL[i]=gb->apu_output.final_sample.left;
|
||||
bufR[i]=gb->apu_output.final_sample.right;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue