Fix label - 'Never' was always shown for playlist runtime

This commit is contained in:
LibretroAdmin 2024-12-28 18:43:46 +01:00
parent 2c3e53e4e8
commit a3f631e310

View File

@ -1006,7 +1006,7 @@ void runtime_log_get_last_played_str(runtime_log_t *runtime_log,
case PLAYLIST_LAST_PLAYED_STYLE_AGO:
s[ _len] = ' ';
s[++_len] = '\0';
if ((runtime_last_played_human(runtime_log, s + _len, len - _len - 2)) > 0)
if ((runtime_last_played_human(runtime_log, s + _len, len - _len - 2)) == 0)
strlcat(s + _len,
msg_hash_to_str(
MENU_ENUM_LABEL_VALUE_PLAYLIST_INLINE_CORE_DISPLAY_NEVER),