img path is now 5 digits

This commit is contained in:
tTh 2023-07-08 12:17:16 +02:00
parent 03763a4dfb
commit c8faa77904
1 changed files with 2 additions and 2 deletions

View File

@ -26,9 +26,9 @@ for idx in $(seq 0 $NBRE)
do
# build the two input filenames ...
#
imgA=$(printf "$SRCDIR/%04d.fimg" $idx)
imgA=$(printf "$SRCDIR/%05d.fimg" $idx)
vb=$(( $(( idx + OFFS )) % NBRE))
imgB=$(printf "$SRCDIR/%04d.fimg" $vb)
imgB=$(printf "$SRCDIR/%05d.fimg" $vb)
# ... and the output filename
#