From fbacd03b3b8fc9783a186b62223cd27c267c87aa Mon Sep 17 00:00:00 2001 From: divverent Date: Sat, 18 Dec 2010 17:38:01 +0000 Subject: [PATCH] glx build, Linux: remove one source of message spam (when /dev/cdrom is not readable) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10671 d7cf8633-e32d-0410-b094-e92efae38249 --- cd_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cd_linux.c b/cd_linux.c index 4544a5d1..bc07b849 100644 --- a/cd_linux.c +++ b/cd_linux.c @@ -203,7 +203,7 @@ int CDAudio_SysUpdate (void) struct cdrom_subchnl subchnl; static time_t lastchk = 0; - if (cdPlaying && lastchk < time(NULL)) + if (cdPlaying && lastchk < time(NULL) && cdfile != -1) { lastchk = time(NULL) + 2; //two seconds between chks subchnl.cdsc_format = CDROM_MSF; -- 2.39.2