1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 01:59:43 +01:00

Similar to unmountAssets, avoid printing a message when custom assets don't exist

This commit is contained in:
Ethan Lee 2021-08-18 16:26:13 -04:00
parent bc47b86645
commit 12e8924efc

View file

@ -574,11 +574,13 @@ bool FILESYSTEM_mountAssets(const char* path)
MAYBE_FAIL(graphics.reloadresources()); MAYBE_FAIL(graphics.reloadresources());
} }
#if 0 /* flibit removed this because it was noisy, maybe keep for debug? */
else else
{ {
/* Wasn't a level zip, base zip, or folder! */ /* Wasn't a level zip, base zip, or folder! */
puts("Asset directory does not exist"); puts("Asset directory does not exist");
} }
#endif
} }
} }