diff options
author | phintuka <phintuka> | 2009-02-04 08:28:02 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-02-04 08:28:02 +0000 |
commit | a18a9abb039a98be4891ad2634c0f189ee9ff146 (patch) | |
tree | 86d459d2eb97fedfdc039fa39506de3ccb4d8bc9 | |
parent | 5ffb712ae6b2b77c41f2b4734c89ccfbcfb7c003 (diff) | |
download | xineliboutput-a18a9abb039a98be4891ad2634c0f189ee9ff146.tar.gz xineliboutput-a18a9abb039a98be4891ad2634c0f189ee9ff146.tar.bz2 |
Enable PlayFileCtrl() when there is no media file playing.
This should fix problems with CDDA track count query.
-rw-r--r-- | device.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: device.c,v 1.68 2009-02-01 23:13:02 rofafor Exp $ + * $Id: device.c,v 1.69 2009-02-04 08:28:02 phintuka Exp $ * */ @@ -861,7 +861,7 @@ int cXinelibDevice::PlayFileCtrl(const char *Cmd, int TimeoutMs) TRACEF("cXinelibDevice::PlayFile"); int result = -1; - if(m_PlayingFile != pmNone) { + /*if(m_PlayingFile != pmNone)*/ { if(m_server) result = m_server->PlayFileCtrl(Cmd, TimeoutMs); if(m_local) |