Change theme path to sdmc:/fbi/theme/

This commit is contained in:
Steveice10 2016-12-19 22:28:34 -08:00
parent 1eb963f179
commit dde312f874

View File

@ -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) {