Open
Description
If one mistakenly calls loadFont("data/Avenir-Light-48.vlw"), instead of loadFont("Avenir-Light-48.vlw"), the call with "data":
- works in Processing
- crashes in an exported executable
This is Processing4.3, MacOS 15.4.1. Crashes on both x86 and aarch.
To test, create a font using Tools->Generate Font, then:
PFont font;
void setup() {
fullScreen(P2D);
frameRate(60);
font = loadFont("data/Avenir-Light-48.vlw");
}
void draw() {
}