Turns out it was a problem with a long string, not the font. Plib is limited
to 80 characters in things like this listbox. BTW I checked and all the fonts
are missing those characters. So, no point in changing.
Description:
Fixed segfault caused by long string.
++pi;
}
+ // truncate entries to 80 characters (plib pui limit)
+ for (i = 0; i < num_files; i++) {
+ if (strlen(files[i]) > 80) files[i][79] = '\0';
+ }
+
files [ num_files ] = NULL ;
// leave the . and .. alone...
FG_FINALIZE_PUI_DIALOG( this );
}
+