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;
}