10-11-2023, 01:20 PM
Another minor fix
the actual program shows only .PNG screenshots.
But with this little mod it searches before for .PNG, then for JPG and JPEG screenshots.
the actual program shows only .PNG screenshots.
But with this little mod it searches before for .PNG, then for JPG and JPEG screenshots.
Code: (Select All)
temp$ = "./" + SI(i).title + "/screenshot.png" ' here program searches for only .PNG files
If Not _FileExists(temp$) Then
temp$ = "./" + SI(i).title + "/screenshot.jpg" 'here program searches for .JPG
If Not _FileExists(temp$) Then temp$ = "./" + SI(i).title + "/screenshot.jpeg" 'here program searches for .JPEG
End If