Fix Bug #558; SETLABELFONT once again prints the names of each font when the font family name isn't supported.
This was a silent regression introduced by porting FMSLogo to Unicode. The old format strings used "%s" which is for "char*" string, but the new strings are "wchar_t*", so only the first character was printed. The fix was to use "%ls".