mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-06-28 16:47:22 -04:00
fix skip consecutive match
This commit is contained in:
parent
31031edbd1
commit
1bcbefeb96
1 changed files with 2 additions and 1 deletions
|
@ -408,15 +408,16 @@ namespace ui {
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
restart_recon = true ;
|
||||||
}
|
}
|
||||||
// send a pause message with the right freq
|
// send a pause message with the right freq
|
||||||
if( has_looped && !_continuous )
|
if( has_looped && !_continuous )
|
||||||
{
|
{
|
||||||
// signal pause to handle_retune
|
// signal pause to handle_retune
|
||||||
receiver_model.set_tuning_frequency( freq ); // Retune to actual freq
|
|
||||||
message.freq = freq ;
|
message.freq = freq ;
|
||||||
message.range = MSG_RECON_PAUSE ;
|
message.range = MSG_RECON_PAUSE ;
|
||||||
EventDispatcher::send_message(message);
|
EventDispatcher::send_message(message);
|
||||||
|
receiver_model.set_tuning_frequency( freq ); // Retune to actual freq
|
||||||
}
|
}
|
||||||
if( _stepper < 0 ) _stepper ++ ;
|
if( _stepper < 0 ) _stepper ++ ;
|
||||||
if( _stepper > 0 ) _stepper -- ;
|
if( _stepper > 0 ) _stepper -- ;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue