Changeset d090e475ad6e0a5f40b3befe1853dac1ed77d617

Show
Ignore:
Timestamp:
11/06/04 12:23:38 (4 years ago)
Author:
Clément Stenac <zorglub@videolan.org>
git-committer:
Clément Stenac <zorglub@videolan.org> 1099740218 +0000
git-parent:

[d875188873bae166d948edf976d5b960a1dd2c3f]

git-author:
Clément Stenac <zorglub@videolan.org> 1099740218 +0000
Message:

compilation fix for xOSD

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/visualization/xosd.c

    r214024c rd090e47  
    226226                psz_display = NULL; 
    227227            } 
    228             if( p_playlist->i_status == PLAYLIST_STOPPED ) 
     228            if( p_playlist->status.i_status == PLAYLIST_STOPPED ) 
    229229            { 
    230230                psz_display = (char *)malloc( sizeof(char )*strlen(_("Stop"))); 
     
    232232                vlc_object_release( p_playlist ); 
    233233            } 
    234             else if( p_playlist->i_status == PLAYLIST_PAUSED ) 
     234            else if( p_playlist->status.i_status == PLAYLIST_PAUSED ) 
    235235            { 
    236236                psz_display = (char *)malloc( sizeof(char )*strlen(_("Pause")));