Loaders: Depriorize disc streaming queue items.

We want the local items, if any, to load first.  This gives us icons, etc.
This commit is contained in:
Unknown W. Brackets 2017-12-09 17:07:42 -08:00
parent 2943bbdbfd
commit 8b665ae696
11 changed files with 31 additions and 0 deletions

View file

@ -289,6 +289,10 @@ void CachingFileLoader::StartReadAhead(s64 pos) {
th.detach();
}
bool CachingFileLoader::IsRemote() {
return backend_->IsRemote();
}
void CachingFileLoader::Cancel() {
backend_->Cancel();
}