On Windows 7, 64 bit. Game seems to get stuck with green window at startup. According to Process Explorer, it's doing something, but it's not showing up on screen. Hope you can get it working, this one looks interesting!
Viewing post in Magnetic Drift jam comments
Oh no! That sounds to me like a gl related issue.
Can you run https://zuluinuoe.itch.io/magnetic-drift-test to see some console output that might be helpful?
Thank you.
I see. Since there's no CL related error or message this'll require some deeper debugging, unfortunately.
Seems like there's an issue rendering any of the textures. I don't know that I'll be able to debug that without a test bed, but it may be helpful to know what version of OpenGL you have.
You could install one of the viewer tools, like hwinfo etc, but one dumb easy way to check would be:
(ql:quickload :cepl)
(cepl:repl) ; This should pop up a window
(gl:gl-version)
(cepl:quit)
Alternatively, you can edit `res/lvl/main-menu.lvl`, and at the very bottom of the file add:
(print (gl:version))
That should show the version in the console window.
Thanks! Sorry for the hassle.