From 5406d648bca3bf66dece5b1554d35d3e40faef1c Mon Sep 17 00:00:00 2001 From: Aurora Date: Tue, 30 Aug 2016 19:58:38 +0200 Subject: [PATCH] Fix derp --- source/fs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/fs.c b/source/fs.c index 67890de..3eb247c 100644 --- a/source/fs.c +++ b/source/fs.c @@ -147,8 +147,9 @@ u32 firmRead(void *dest, u32 firmType) { "00000202", "20000202" }, { "00000003", "20000003" }}; - char path[48] = "1:/title/00040138/00000000/content"; + char path[48] = "1:/title/00040138/"; concatenateStrings(path, firmFolders[firmType][isN3DS ? 1 : 0]); + concatenateStrings(path, "/content"); DIR dir; FILINFO info;