Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. From 691ac13a9929bd5dd50a243d5cc5261848ca28e6 Mon Sep 17 00:00:00 2001
  2. From: amet <amet.nospam@gmail.com>
  3. Date: Tue, 1 Mar 2011 15:27:26 +0400
  4. Subject: [PATCH] osx fix
  5.  
  6. ---
  7. xbmc/pvr/PVRManager.cpp | 2 +-
  8. 1 files changed, 1 insertions(+), 1 deletions(-)
  9.  
  10. diff --git a/xbmc/pvr/PVRManager.cpp b/xbmc/pvr/PVRManager.cpp
  11. index 2cf0f08..79acafe 100644
  12. --- a/xbmc/pvr/PVRManager.cpp
  13. +++ b/xbmc/pvr/PVRManager.cpp
  14. @@ -220,7 +220,7 @@ bool CPVRManager::LoadClients(void)
  15. /* check if this client isn't active already */
  16. for (unsigned int iClientPtr = 0; iClientPtr < m_clients.size(); iClientPtr++)
  17. {
  18. - if (m_clients.at(iClientPtr)->ID() == clientAddon->ID() && m_clients.at(iClientPtr)->ReadyToUse())
  19. + if (m_clients[iClientPtr]->ID() == clientAddon->ID() && m_clients[iClientPtr]->ReadyToUse())
  20. {
  21. /* already started */
  22. bStarted = true;
  23. --
  24. 1.6.4.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement