From 577fe602686cc5f3c24adf75716010228bb2dbf7 Mon Sep 17 00:00:00 2001 From: fincs Date: Fri, 3 Jul 2020 20:24:11 +0200 Subject: [PATCH] archive_dev: Reduce maximum simultaneous opened archives from 32 to 8 in order to conserve memory --- libctru/source/archive_dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libctru/source/archive_dev.c b/libctru/source/archive_dev.c index a2b3a76..59c8d7b 100644 --- a/libctru/source/archive_dev.c +++ b/libctru/source/archive_dev.c @@ -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 */