diff options
author | phintuka <phintuka> | 2010-12-19 14:41:10 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-12-19 14:41:10 +0000 |
commit | f60d221c4e589feb45f55480ef00ef7951c9aa30 (patch) | |
tree | 34eef4f759b632f3f80ee3aa8412bfc7306ab8a7 | |
parent | c204bf2c6bbf88d9b582895c488f75b1fbc4d5ea (diff) | |
download | xineliboutput-f60d221c4e589feb45f55480ef00ef7951c9aa30.tar.gz xineliboutput-f60d221c4e589feb45f55480ef00ef7951c9aa30.tar.bz2 |
Fixed typo
-rw-r--r-- | menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: menu.c,v 1.82 2010-12-19 14:38:37 phintuka Exp $ + * $Id: menu.c,v 1.83 2010-12-19 14:41:10 phintuka Exp $ * */ @@ -363,7 +363,7 @@ eOSState cMenuBrowseFiles::Open(bool ForceOpen, bool Queue, bool Rewind) cPlaylist *Playlist = new cPlaylist(); for (cFileListItem *it = (cFileListItem*)First(); it; it=(cFileListItem*)Next(it)) { if (!it->IsDir()) - Playlist->Read(cString::sprintf("%s/%s", *m_CurrentDir, it->Name())); + Playlist->Read(cString::sprintf("%s/%s", m_CurrentDir, it->Name())); if (it == Get(Current())) Playlist->SetCurrent(Playlist->Last()); } |