summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2009-02-04 08:28:02 +0000
committerphintuka <phintuka>2009-02-04 08:28:02 +0000
commita18a9abb039a98be4891ad2634c0f189ee9ff146 (patch)
tree86d459d2eb97fedfdc039fa39506de3ccb4d8bc9
parent5ffb712ae6b2b77c41f2b4734c89ccfbcfb7c003 (diff)
downloadxineliboutput-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/device.c b/device.c
index 4944e26e..b78b799d 100644
--- a/device.c
+++ b/device.c
@@ -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)