12-04-2023, 06:12 PM
(12-04-2023, 05:47 PM)justsomeguy Wrote: My apologies, my comment wasn't very helpful. It appears to have trouble with the slashes in the filename strings.QB64 is supposed to handle the slashes underneath when running on various operating systems, or so I thought.
I'm able to get it to work if I change the direction of the slashes.
After that I get...Code: (Select All)hf = _LOADFONT("need/textures/prototype.ttf", 70)
I've isolated that to ...
Code: (Select All)_SOURCE uni_bord
Which is set by ...
Switch the slashes and I get further.Code: (Select All)uni_bord = _LOADIMAGE("need\menu\bord\uni_bord.jpg", 32)
In conclusion Linux uses forward slashes and Windows it is backslashes.
Great work though! Keep it up! I look forward to seeing it run in Linux.