From 1aa5352d731b43e7b3764a0ba68547e4264e5d1b Mon Sep 17 00:00:00 2001 From: FlatTV Date: Fri, 23 Apr 2021 14:36:10 +0200 Subject: [PATCH] Fix typo Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/65369b54ebc79945eb34768656b1884b3b7e06c9 Author: FlatTV Date: 2021-04-23 (Fri, 23 Apr 2021) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/movieplayer.cpp | 2 +- src/system/locals.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index cd2be42f3..1de6a6634 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -2550,7 +2550,7 @@ void CMoviePlayerGui::selectAudioPid() #if HAVE_CST_HARDWARE char cnt[5]; sprintf(cnt, "%d", count); - std::string apidtitle = (currentac3 == 0) ? g_Locale->getText(LOCALE_AUDIOMENU_AC3_atype1) : g_Locale->getText(LOCALE_AUDIOMENU_AC3_atype0); + std::string apidtitle = (currentac3 == 0) ? g_Locale->getText(LOCALE_AUDIOMENU_AC3_ATYPE1) : g_Locale->getText(LOCALE_AUDIOMENU_AC3_ATYPE0); CMenuForwarder * item = new CMenuForwarder(apidtitle.c_str(), true, NULL, selector, cnt, CRCInput::convertDigitToKey(count + 1)); APIDSelector.addItem(item, false); #endif diff --git a/src/system/locals.h b/src/system/locals.h index f83455f90..ba28d90f2 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -158,8 +158,8 @@ typedef enum LOCALE_AUDIO_SRS_VOLUME, LOCALE_AUDIOMENU_PCMOFFSET, LOCALE_AUDIOMENU_AC3, - LOCALE_AUDIOMENU_AC3_atype0, - LOCALE_AUDIOMENU_AC3_atype1, + LOCALE_AUDIOMENU_AC3_ATYPE0, + LOCALE_AUDIOMENU_AC3_ATYPE1, LOCALE_AUDIOMENU_ANALOG_MODE, LOCALE_AUDIOMENU_ANALOG_OUT, LOCALE_AUDIOMENU_AUTO_LANG,