Commit b40e9cd7 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

Attempt to fix previous commit.

parent 2b64e336
...@@ -138,10 +138,10 @@ void InputManager::update() ...@@ -138,10 +138,10 @@ void InputManager::update()
input_item_GetNowPlaying( input_GetItem(p_input) ), input_item_GetNowPlaying( input_GetItem(p_input) ),
input_GetItem(p_input)->psz_name ); input_GetItem(p_input)->psz_name );
} }
else if( !EMPTY_STR(input_item_GetNowPlaying( input_GetArtist(p_input) )) ) else if( !EMPTY_STR(input_item_GetArtist( input_GetItem(p_input) )) )
{ {
text.sprintf( "%s - %s", text.sprintf( "%s - %s",
input_item_GetNowPlaying( input_GetArtist(p_input) ), input_item_GetArtist( input_GetItem(p_input) ),
input_GetItem(p_input)->psz_name ); input_GetItem(p_input)->psz_name );
} }
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment