On macOS, I can’t press the play button, nor advance with any of the keys, and the game won’t start without the -XstartOnFirstThread flag. Looks interesting. Any tips on how I can make it work?
Viewing post in foldl jam comments
Yeah -XstartOnFirstThread is required, MacOS doesn’t love OpenGL 😅
The Mac version was built on my crappy 2012 MacBook air, so my guess is this is a retina display issue?
Can you try:
java \
-XstartOnFirstThread \
-Dorg.lwjgl.opengl.Display.enableHighDPI=false \
-Dsun.java2d.uiScale=1 \
-jar foldl_macos.jar
Let me know if that doesn’t work and I’ll do some more digging.

