lcd4linux: change fallback for movie title

Origin commit data
------------------
Commit: f68c9fdded
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-05-24 (Tue, 24 May 2016)

Origin message was:
------------------
- lcd4linux: change fallback for movie title
This commit is contained in:
vanhofen
2016-05-24 09:28:24 +02:00
parent 851d568d04
commit cc8424f741

View File

@@ -695,13 +695,14 @@ void CLCD4l::ParseInfo(uint64_t parseID, bool newID, bool firstRun)
//}
else if (parseID == MODE_TS)
{
Event = "Movieplayer";
if (!CMoviePlayerGui::getInstance().pretty_name.empty())
Event = CMoviePlayerGui::getInstance().pretty_name;
else if (CMoviePlayerGui::getInstance().p_movie_info)
Event = CMoviePlayerGui::getInstance().p_movie_info->epgTitle;
if (Event.empty())
Event = "MOVIE";
if (!ModeTshift)
{
int total = CMoviePlayerGui::getInstance().GetDuration();