summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/src/games/gb/apu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/games/gb/apu.c b/sys/src/games/gb/apu.c
index e995ce83d..0501b0db6 100644
--- a/sys/src/games/gb/apu.c
+++ b/sys/src/games/gb/apu.c
@@ -270,8 +270,8 @@ sampletick(void *)
s[1] *= 1 + (cntl >> 4 & 7);
if(sbufp < sbuf + nelem(sbuf)){
- sbufp[0] = s[0] * 60;
- sbufp[1] = s[1] * 60;
+ sbufp[0] = s[0] * 30;
+ sbufp[1] = s[1] * 30;
sbufp += 2;
}
}