Wow I'm dumb

This commit is contained in:
2017-08-26 19:31:06 -04:00
parent 87b6bb11d1
commit 426e3334bd

View File

@@ -44,11 +44,11 @@ int main(void)
u32 kDown = hidKeysDown(); u32 kDown = hidKeysDown();
if (kDown & KEY_A) if (kDown & KEY_A)
{ {
theme *theme = malloc(sizeof(theme)); theme *theme_data = malloc(sizeof(theme));
u16 path[262] = {0}; u16 path[262] = {0};
struacat(path, "/Themes/Saber Lily"); struacat(path, "/Themes/Saber Lily");
parse_smdh(theme, path); parse_smdh(theme_data, path);
printu(theme->name); printu(theme_data->name);
} }
if (kDown & KEY_START) if (kDown & KEY_START)
{ {