From 9da76b94c61bc81f71ba12f4d0d7b10f04c896a9 Mon Sep 17 00:00:00 2001 From: d0k3 Date: Thu, 1 Jun 2017 01:19:30 +0200 Subject: [PATCH] Reduce ram drive size on sighax to 64MB Don't use extended FCRAM, cause that's disabled --- source/fatfs/ramdrive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fatfs/ramdrive.c b/source/fatfs/ramdrive.c index aed5ed2..f5ba389 100644 --- a/source/fatfs/ramdrive.c +++ b/source/fatfs/ramdrive.c @@ -27,5 +27,5 @@ u64 GetRamDriveSize(void) { void InitRamDrive(void) { ramdrv_buffer = RAMDRV_BUFFER; - ramdrv_size = IS_O3DS ? RAMDRV_SIZE_O3DS : RAMDRV_SIZE_N3DS; + ramdrv_size = (IS_O3DS || IS_SIGHAX) ? RAMDRV_SIZE_O3DS : RAMDRV_SIZE_N3DS; } \ No newline at end of file