Search found 3 matches

by CrazyEce91
Tue Jun 16, 2020 9:15 am
Forum: Support and Development
Topic: Excecutable will run only if it is at the same folder with source code
Replies: 4
Views: 2928

Re: Excecutable will run only if it is at the same folder with source code

In the code you're requiring things from a folder named "states" but the zip file has a folder named "States" with an uppercase S. Zip files and most non-Windows systems have case sensitive filenames which is why the game works with the unpacked files next to it. As to why LÖVE ...
by CrazyEce91
Tue Jun 16, 2020 9:14 am
Forum: Support and Development
Topic: Excecutable will run only if it is at the same folder with source code
Replies: 4
Views: 2928

Re: Excecutable will run only if it is at the same folder with source code

zorg wrote: Mon Jun 15, 2020 1:09 am Also, even if you combine love.exe with your .love file, you still need all the .dll files next to it for it to work.
Yes I did that step in the first place, the problem was the one ReFreezed suggested.
by CrazyEce91
Sun Jun 14, 2020 12:34 pm
Forum: Support and Development
Topic: Excecutable will run only if it is at the same folder with source code
Replies: 4
Views: 2928

Excecutable will run only if it is at the same folder with source code

Hello fellow devs, I have made a demo of my game that I want to distribute to some BETA testers. I made an .exe file of my game , however when I try to run it it will complain that it can not find some particular source files . If I move the excecutable to the folder where I have my source files , t...