Yes, looks like it. On Linux I ran these commands in the graphics folder to resize to 64x64, and it works now.
for FILE in *; do convert -resize 64x64 $FILE $(echo $FILE | sed 's/\./-new./'); done
for FILE in *-new*; do mv $FILE $(echo $FILE | sed 's/-new//'); done