Brad Kligerman wrote:
What is the difference between [makefilename %d] and [makefilename %c] ??
%d prints a decimal value, %c prints an ascii character, %s prints a string, %X a hexadecimal value. %f always prints 0.000 for some reason, instead of a float value.
Martin