archive_dev: Reduce maximum simultaneous opened archives from 32 to 8 in order to conserve memory

This commit is contained in:
fincs 2020-07-03 20:24:11 +02:00
parent 75a7312e40
commit 577fe60268
No known key found for this signature in database
GPG Key ID: 62C7609ADA219C60

View File

@ -107,7 +107,7 @@ typedef struct
static bool archive_initialized = false;
static s32 archive_device_cwd;
static archive_fsdevice archive_devices[32];
static archive_fsdevice archive_devices[8];
/*! @endcond */