summaryrefslogtreecommitdiff
path: root/apps/cuesheet.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2023-10-10 10:01:52 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2023-10-30 19:03:18 -0400
commitd78be6716b504b00a4bf9b1d637bdb878f303063 (patch)
tree3be1ce5669ae5b1bfd39589010f50599ac1d0b41 /apps/cuesheet.c
parentd77c417fd1bfb79013bbd2c47920d89b95a5ac76 (diff)
downloadrockbox-d78be6716b504b00a4bf9b1d637bdb878f303063.tar.gz
rockbox-d78be6716b504b00a4bf9b1d637bdb878f303063.zip
[BUGFIX] block SYS_EVENTS from some action switches
fixes some of the places where SYS EVENTS cause issues with action switches that don't have handling for system events more exist.. Change-Id: Ie6f4b05ed7ef1119d43e65ee49be8f754af83f52
Diffstat (limited to 'apps/cuesheet.c')
-rw-r--r--apps/cuesheet.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c
index 263fed154d..bbdc93746e 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -523,6 +523,8 @@ void browse_cuesheet(struct cuesheet *cue)
523 523
524 case ACTION_STD_CANCEL: 524 case ACTION_STD_CANCEL:
525 done = true; 525 done = true;
526 default:
527 break;
526 } 528 }
527 } 529 }
528} 530}