diff options
author | S. Davilla <davilla@4pi.com> | 2011-04-12 12:50:59 -0400 |
---|---|---|
committer | S. Davilla <davilla@4pi.com> | 2011-04-12 18:19:24 -0400 |
commit | a29143e377e6f121a9dff931bb383a8d7ddb717d (patch) | |
tree | 872739ae5397f1af09da8219779920f9511060c3 | |
parent | 3c39e45375ef23099572a4cbbd1e8d2f6869c82b (diff) |
replace SDL_GetTicks with our internal ms time
-rw-r--r-- | xbmc/input/linux/LIRC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/input/linux/LIRC.cpp b/xbmc/input/linux/LIRC.cpp index 8bd4c61078..dcbdf94f1e 100644 --- a/xbmc/input/linux/LIRC.cpp +++ b/xbmc/input/linux/LIRC.cpp @@ -241,7 +241,7 @@ void CRemoteControl::Update() if (!CheckDevice()) return; - uint32_t now = SDL_GetTicks(); + uint32_t now = CTimeUtils::GetTimeMS(); // Read a line from the socket while (fgets(m_buf, sizeof(m_buf), m_file) != NULL) |