summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playback.c2
-rw-r--r--apps/playback.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 9671f30100..15a3fe9a61 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -3821,7 +3821,7 @@ long audio_filebufused(void)
3821 3821
3822/* Enable or disable cuesheet support and allocate/don't allocate the 3822/* Enable or disable cuesheet support and allocate/don't allocate the
3823 extra associated resources */ 3823 extra associated resources */
3824void audio_set_cuesheet(int enable) 3824void audio_set_cuesheet(bool enable)
3825{ 3825{
3826 if (play_status == PLAY_STOPPED || !enable != !get_current_cuesheet()) 3826 if (play_status == PLAY_STOPPED || !enable != !get_current_cuesheet())
3827 { 3827 {
diff --git a/apps/playback.h b/apps/playback.h
index 0571f5fe55..5135c988cb 100644
--- a/apps/playback.h
+++ b/apps/playback.h
@@ -75,7 +75,7 @@ long audio_filebufused(void);
75void audio_pre_ff_rewind(void); 75void audio_pre_ff_rewind(void);
76void audio_skip(int direction); 76void audio_skip(int direction);
77 77
78void audio_set_cuesheet(int enable); 78void audio_set_cuesheet(bool enable);
79#ifdef HAVE_CROSSFADE 79#ifdef HAVE_CROSSFADE
80void audio_set_crossfade(int enable); 80void audio_set_crossfade(int enable);
81#endif 81#endif