They had a rather dumb screenshot coding for this, where every time you take a screenie, the fiesta would have to go inside your comp and check the value of the last screen shot in order to save new screenie with the same value + 1. (hence the reason why the more screens you have, the more slower the whole screenshotting process)
Pseudocode:
if (PrtSc is pressed)
{
Scan and find the most recent file
Get the file name
Save the new screenie with the same name, but add +1 to the ending number
}
|