Files
Anemone3DS/source/themes.c
Alex Taber 99d9dd1206 More stuff
2017-08-02 15:54:40 -04:00

19 lines
362 B
C

#include <3ds.h>
#include <stdlib.h>
#include "themes.h"
Result single_install(theme* theme)
{
char *body;
if (theme->is_zip)
{
zip_file_to_buf("body_lz.bin", theme->path, body);
} else {
u16 path[0x106];
memcpy(path, theme->path, 0x106);
struacat(path, "/body_lz.bin");
file_to_buf(path, body);
}
}