mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-25 18:24:59 +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:
parent
9001a68833
commit
afd16ebc73
1 changed files with 1 additions and 0 deletions
|
@ -143,6 +143,7 @@ int main(int argc, char *argv[])
|
||||||
|
|
||||||
if(!FILESYSTEM_init(argv[0], baseDir, assetsPath))
|
if(!FILESYSTEM_init(argv[0], baseDir, assetsPath))
|
||||||
{
|
{
|
||||||
|
puts("Unable to initialize filesystem!");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue