Automatically set BGM flag to enabled when doing a BGM install

This commit is contained in:
2020-06-16 18:45:59 -04:00
parent 6bafa6a22e
commit 36e8104dbb
5 changed files with 67 additions and 70 deletions

View File

@@ -39,6 +39,8 @@ Result close_archives(void);
u32 file_to_buf(FS_Path path, FS_Archive archive, char** buf);
u32 zip_memory_to_buf(char *file_name, void * zip_memory, size_t zip_size, char ** buf);
u32 zip_file_to_buf(char *file_name, u16 *zip_path, char **buf);
u32 decompress_lz_file(FS_Path file_name, FS_Archive archive, char **buf);
u32 compress_lz_file_fast(FS_Path path, FS_Archive archive, char *in_buf, u32 size);
Result buf_to_file(u32 size, FS_Path path, FS_Archive archive, char *buf);
void remake_file(FS_Path path, FS_Archive archive, u32 size);