aboutsummaryrefslogtreecommitdiff
path: root/xbmc/linux/XLCDproc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/linux/XLCDproc.cpp')
-rw-r--r--xbmc/linux/XLCDproc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/linux/XLCDproc.cpp b/xbmc/linux/XLCDproc.cpp
index 8a21d0be1c..d83a8d7c98 100644
--- a/xbmc/linux/XLCDproc.cpp
+++ b/xbmc/linux/XLCDproc.cpp
@@ -19,6 +19,7 @@
*
*/
+#include "threads/SystemClock.h"
#include "PlatformInclude.h"
#include "XLCDproc.h"
#include "../utils/log.h"
@@ -56,7 +57,7 @@ void XLCDproc::Initialize()
return ;//nothing to do
// don't try to initialize too often
- int now = CTimeUtils::GetTimeMS();
+ int now = XbmcThreads::SystemClockMillis();
if (now < m_lastInitAttempt + m_initRetryInterval)
return;
m_lastInitAttempt = now;