1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2025-01-10 19:09:45 +01:00

Add puts() if FILESYSTEM_init() fails

Just to be helpful if someone has a failing FILESYSTEM_init(), but
doesn't know that's their issue and keeps wondering why VVVVVV just
exits with code 1.
This commit is contained in:
Misa 2020-06-21 16:24:51 -07:00 committed by Ethan Lee
parent 9001a68833
commit afd16ebc73

View file

@ -143,6 +143,7 @@ int main(int argc, char *argv[])
if(!FILESYSTEM_init(argv[0], baseDir, assetsPath))
{
puts("Unable to initialize filesystem!");
return 1;
}