1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Catch error when a cardset image fails to load

This commit is contained in:
Joe R 2024-11-08 21:26:23 -05:00
parent 880fb11979
commit 552585f143

View file

@ -181,6 +181,8 @@ class Images:
# load face cards
for n in self.cs.getFaceCardNames():
self._card.append(self.__loadCard(n + self.cs.ext))
if self._card[-1] is None:
return 0
self._card[-1].filename = n
if progress:
progress.update(step=pstep)