Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
[droid] fixed, c/p monster
Browse files Browse the repository at this point in the history
  • Loading branch information
davilla authored and Cory Fields committed Jul 12, 2012
1 parent 1fd02eb commit a15758b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/threads/platform/pthreads/ThreadImpl.cpp
Expand Up @@ -119,7 +119,7 @@ bool CThread::SetPriority(const int iPriority)
// keep priority in bounds
int prio = iPriority;
if (prio >= GetMaxPriority())
prio = GetMinPriority();
prio = GetMaxPriority();
if (prio < GetMinPriority())
prio = GetMinPriority();

Expand Down

0 comments on commit a15758b

Please sign in to comment.