From dde312f87464111d846413dba26a315233fa07bd Mon Sep 17 00:00:00 2001 From: Steveice10 Date: Mon, 19 Dec 2016 22:28:34 -0800 Subject: [PATCH] Change theme path to sdmc:/fbi/theme/ --- source/core/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/screen.c b/source/core/screen.c index e2d20fd..66f58d3 100644 --- a/source/core/screen.c +++ b/source/core/screen.c @@ -56,7 +56,7 @@ static FILE* screen_open_resource(const char* path) { u32 realPathSize = strlen(path) + 16; char realPath[realPathSize]; - snprintf(realPath, realPathSize, "sdmc:/fbitheme/%s", path); + snprintf(realPath, realPathSize, "sdmc:/fbi/theme/%s", path); FILE* fd = fopen(realPath, "rb"); if(fd != NULL) {