Fix ctrl-click signal cycling setting

This commit is contained in:
Jonathan G Rennison
2021-11-22 17:04:25 +00:00
parent 9ff8643fd9
commit ef1b8f159f
2 changed files with 5 additions and 5 deletions

View File

@@ -114,8 +114,8 @@ static inline bool IsSignalSpritePBS(SignalType type)
static inline SignalType NextSignalType(SignalType cur, uint which_signals)
{
bool pbs = (which_signals != 0);
bool block = (which_signals != 1);
bool pbs = true;
bool block = (which_signals == SIGNAL_CYCLE_ALL);
switch(cur) {
case SIGTYPE_NORMAL: return block ? SIGTYPE_ENTRY : SIGTYPE_PBS;