Merge branch 'patch_sound'

Bugfix on sound init checking button 3 instead of button 1 (thanks Dieter Paul !)
This commit is contained in:
Luca Borsari 2024-04-04 19:08:25 +02:00
commit d54ad856e7

View file

@ -144,7 +144,7 @@ void setup() {
track_configure( &tck, 0 );
}
if( controller_isActive( DIGITAL_CTRL[CTRL_3]) || param_option_is_active(&tck.cfg, SLOPE_MODE_OPTION) ) { // push switch 1 on reset for activate physics
if( controller_isActive( DIGITAL_CTRL[CTRL_1]) || param_option_is_active(&tck.cfg, SLOPE_MODE_OPTION) ) { // push switch 1 on reset for activate physics
ramp_init( &tck );
draw_ramp( &tck );
track.show();