# HG changeset patch # User Michael Pavone # Date 1700119384 28800 # Node ID f6213de4224ce2a4ef10bf960ddb0c31c652f977 # Parent 6099d4906c0ca06a8c516d2b303118047b66ab71 Fix psg panning implementation diff -r 6099d4906c0c -r f6213de4224c psg.c --- a/psg.c Mon Nov 13 23:48:10 2023 -0800 +++ b/psg.c Wed Nov 15 23:23:04 2023 -0800 @@ -143,11 +143,11 @@ if (context->pan & pan_right) { right_accum += value; } - pan_left <<= 1; - pan_right <<= 1; } else { value = 0; } + pan_left <<= 1; + pan_right <<= 1; #ifndef IS_LIB if (context->scope) { scope_add_sample(context->scope, context->scope_channel[i], value, trigger[i]);