diff --git a/command.c b/command.c index efa3ae8fc9..b443ee5520 100644 --- a/command.c +++ b/command.c @@ -2195,6 +2195,7 @@ TODO: Add a setting for these tweaks */ NULL ); playlist_write_file(g_defaults.content_favorites); + runloop_msg_queue_push(msg_hash_to_str(MSG_ADDED_TO_FAVORITES), 1, 180, true); break; case CMD_EVENT_RESTART_RETROARCH: if (!frontend_driver_set_fork(FRONTEND_FORK_RESTART)) diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index 1354bd7150..9f47c0025c 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -1875,6 +1875,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_WIFI_SETTINGS, "Scans for wireless networks and establishes connection.") MSG_HASH(MENU_ENUM_SUBLABEL_HELP_LIST, "Learn more about how the program works.") +MSG_HASH(MSG_ADDED_TO_FAVORITES, + "Added to favorites") MSG_HASH(MSG_APPENDED_DISK, "Appended disk") MSG_HASH(MSG_APPLICATION_DIR, diff --git a/msg_hash.h b/msg_hash.h index 4aaefd0c8a..67107195cb 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -172,6 +172,7 @@ enum msg_hash_enums MSG_NETPLAY_CANNOT_PLAY, MSG_NETPLAY_PEER_PAUSED, MSG_NETPLAY_CHANGED_NICK, + MSG_ADDED_TO_FAVORITES, MSG_AUTODETECT, MSG_AUDIO_VOLUME, MSG_AUDIO_MIXER_VOLUME,