summaryrefslogtreecommitdiffstats
path: root/apps/bookmark.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r--apps/bookmark.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index b8d41c7464..b2ff1aafbc 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -94,7 +94,7 @@ static const char* get_bookmark_info(int list_index,
char *buffer,
size_t buffer_len);
static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resume);
-static bool system_check(void);
+static bool is_bookmarkable_state(void);
static bool write_bookmark(bool create_bookmark_file, const char *bookmark);
static int get_bookmark_count(const char* bookmark_file_name);
@@ -125,7 +125,7 @@ bool bookmark_create_menu(void)
/* ----------------------------------------------------------------------- */
bool bookmark_load_menu(void)
{
- if (system_check())
+ if (is_bookmarkable_state())
{
char* name = playlist_get_name(NULL, global_temp_buffer,
sizeof(global_temp_buffer));
@@ -167,11 +167,11 @@ bool bookmark_autobookmark(bool prompt_ok)
{
char* bookmark;
bool update = false;
- if (!system_check())
+ if (!is_bookmarkable_state())
return false;
audio_pause(); /* first pause playback */
- if (global_settings.autoupdatebookmark && bookmark_exist())
+ if (global_settings.autoupdatebookmark && bookmark_exists())
update = true;
bookmark = create_bookmark();
/* Workaround for inability to speak when paused: all callers will
@@ -324,7 +324,7 @@ static char* create_bookmark()
int resume_index = 0;
char *file;
- if (!system_check())
+ if (!is_bookmarkable_state())
return NULL; /* something didn't happen correctly, do nothing */
/* grab the currently playing track */
@@ -1063,11 +1063,11 @@ static bool generate_bookmark_file_name(const char *in)
/* ----------------------------------------------------------------------- */
/* Returns true if a bookmark file exists for the current playlist */
/* ----------------------------------------------------------------------- */
-bool bookmark_exist(void)
+bool bookmark_exists(void)
{
bool exist=false;
- if(system_check())
+ if(is_bookmarkable_state())
{
char* name = playlist_get_name(NULL, global_temp_buffer,
sizeof(global_temp_buffer));
@@ -1084,7 +1084,7 @@ bool bookmark_exist(void)
/* Checks the current state of the system and returns true if it is in a */
/* bookmarkable state. */
/* ----------------------------------------------------------------------- */
-static bool system_check(void)
+static bool is_bookmarkable_state(void)
{
int resume_index = 0;