Page 1 of 1

Error after trying to package game distribution

Posted: Wed Dec 09, 2020 3:47 pm
by fmra
game.love
(71.89 MiB) Downloaded 131 times
I created the .love file and fused it to love.exe and have the DLLs, but when I try to run the new .exe, I get an error that the music file does not exist. Its in the right folder within the game.love, and the code isn't throwing an error until it attempts to play it (it loads it just fine). Folder structure is correct, so I'm at a loss to why it won't play.

Re: Error after trying to package game distribution

Posted: Thu Dec 10, 2020 1:43 am
by ReFreezed
Filenames in zip files are case sensitive. The file "Inception.mp3" has an uppercase I, but you're trying to load "inception.mp3".

Re: Error after trying to package game distribution

Posted: Thu Dec 10, 2020 2:06 am
by fmra
Thank you. That was it exactly.