10-10-2009, 04:48 PM
Oops...a simple logical fix:
At the bottom of Sub SplitImage change this:
To this:
So people won't have to set it themselves every time they load an image.
At the bottom of Sub SplitImage change this:
Code:
TotalSpritesSaved = Val(frmMain.txtStartAt.Text)
To this:
Code:
If TotalSpritesSaved 0 Then TotalSpritesSaved = Val(frmMain.txtStartAt.Text)
So people won't have to set it themselves every time they load an image.