06-27-2023, 04:52 PM
As for the EXE question, I *always* select the Output EXE To Source option with the compiler. My file structure is always assumed to be in relation to my BAS file, and I tend to direct everything from there. "./" <-- this little home path tends to set the stage for where everything is located, and then I adjust files/resource from there.
image = _LoadImage("./images/whatever.png",32)
font = _LoadFont("./fonts/whatever.ttf",16,"monospace")
And so on.
image = _LoadImage("./images/whatever.png",32)
font = _LoadFont("./fonts/whatever.ttf",16,"monospace")
And so on.