diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2013-03-24 14:58:40 +0100 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2013-03-24 14:58:40 +0100 |
| commit | 0de2a85ae1efd9cece7686321ea185ae4912baa1 (patch) | |
| tree | 1ccbd80790211581f449191b1fe32dc0c462b3f1 /apps/playback.c | |
| parent | d504a6b220c6f67461a5c9695f428ea12ccc50a1 (diff) | |
| download | rockbox-0de2a85ae1efd9cece7686321ea185ae4912baa1.zip rockbox-0de2a85ae1efd9cece7686321ea185ae4912baa1.tar.gz rockbox-0de2a85ae1efd9cece7686321ea185ae4912baa1.tar.bz2 rockbox-0de2a85ae1efd9cece7686321ea185ae4912baa1.tar.xz | |
Change audio_set_cuesheet parameter from int to bool (fixes cppcheck warning)
Change-Id: Icb31c8bd8605aca27765a94b609c41f1f706426f
Diffstat (limited to 'apps/playback.c')
| -rw-r--r-- | apps/playback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c index 9671f30..15a3fe9 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -3821,7 +3821,7 @@ long audio_filebufused(void) /* Enable or disable cuesheet support and allocate/don't allocate the extra associated resources */ -void audio_set_cuesheet(int enable) +void audio_set_cuesheet(bool enable) { if (play_status == PLAY_STOPPED || !enable != !get_current_cuesheet()) { |