From 5d66883e818d384abdfebbb05c8e1850d87d121d Mon Sep 17 00:00:00 2001 From: Jason Breitweiser <155899532+jbreitweiser@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:05:08 -0400 Subject: [PATCH] Add To Playlist with corrections (#16416) * This PR contains Add To Favorite functionality. It allows moving content to another playlist or to Create a new playlist with the selected content. * Update retroarch.c Fixed ISO C90 variable declaration at top of code. * Update menu_cbs_ok.c Fixed variable declaration for ISO requirement. * This commit is to amend a previous PR where the mesg andd label hashs were in the wrong file. --- intl/msg_hash_lbl.h | 9 --------- intl/msg_hash_us.h | 8 ++++++++ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/intl/msg_hash_lbl.h b/intl/msg_hash_lbl.h index 5efa38f9b9..d0e578d086 100644 --- a/intl/msg_hash_lbl.h +++ b/intl/msg_hash_lbl.h @@ -17,15 +17,6 @@ MSG_HASH( MENU_ENUM_LABEL_ADD_ENTRY_TO_PLAYLIST, "add_entry_to_playlist" ) -MSG_HASH( - MSG_ADDED_TO_PLAYLIST, - "Added to playlist" - ) -MSG_HASH( - MSG_ADD_TO_PLAYLIST_FAILED, - "Failed to add to playlist: playlist full" - ) - MSG_HASH( MENU_ENUM_LABEL_ACCOUNTS_CHEEVOS_USERNAME, "accounts_cheevos_username" diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index 7f9ad8ec18..cff050a5ac 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -6675,6 +6675,14 @@ MSG_HASH( MENU_ENUM_LABEL_VALUE_CREATE_NEW_PLAYLIST, "Create New Playlist" ) +MSG_HASH( + MSG_ADDED_TO_PLAYLIST, + "Added to playlist" + ) +MSG_HASH( + MSG_ADD_TO_PLAYLIST_FAILED, + "Failed to add to playlist: playlist full" + ) MSG_HASH( MENU_ENUM_SUBLABEL_CREATE_NEW_PLAYLIST, "Create a new playlist and add the current entry to it."