asyncimage/loader: fix loading when "clock" backend is used instead of "pygame" (happen on iOS). closes #768

This commit is contained in:
Mathieu Virbel 2012-10-28 15:58:57 +01:00
parent 8d31c4c395
commit 97df0e481b
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ else:
parameters = self._q_load.pop()
except IndexError:
return
self._load(parameters)
self._load(parameters)
Loader = LoaderClock()
Logger.info('Loader: using <clock> as thread loader')