Fix theme path resolution.

This commit is contained in:
Steven Smith 2016-12-20 09:24:16 -08:00 committed by GitHub
parent dde312f874
commit 4ce326879a

View File

@ -53,7 +53,7 @@ static struct {
static C3D_Tex* glyphSheets;
static FILE* screen_open_resource(const char* path) {
u32 realPathSize = strlen(path) + 16;
u32 realPathSize = strlen(path) + 17;
char realPath[realPathSize];
snprintf(realPath, realPathSize, "sdmc:/fbi/theme/%s", path);
@ -751,4 +751,4 @@ void screen_draw_string(const char* text, float x, float y, float scaleX, float
void screen_draw_string_wrap(const char* text, float x, float y, float scaleX, float scaleY, u32 colorId, bool centerLines, float wrapX) {
screen_draw_string_internal(text, x, y, scaleX, scaleY, colorId, centerLines, true, wrapX);
}
}