Add install BGM option

This commit is contained in:
2017-09-01 12:31:55 -04:00
parent 867f4b61ab
commit d93f4f9207
6 changed files with 99 additions and 16 deletions

View File

@@ -35,6 +35,9 @@
#define THEMES_PATH "/Themes/"
#define SPLASHES_PATH "/Splashes/"
#define SINGLE_INSTALL 0
#define SHUFFLE_INSTALL 1
#define BGM_INSTALL 2
static const int THEMES_PER_SCREEN = 4;

View File

@@ -33,7 +33,7 @@
void init_screens(void);
void exit_screens(void);
void draw_theme_install(bool shuffle_install);
void draw_theme_install(int install_type);
void draw_theme_interface(Theme_s * themes_list, int theme_count, int selected_theme, bool preview_mode);
void draw_splash_install(void);
void draw_splash_interface(Splash_s *splashes_list, int splash_count, int selected_splash, bool preview_mode);

View File

@@ -50,5 +50,6 @@ void load_theme_preview(Theme_s *theme);
Result get_themes(Theme_s **themes_list, int *theme_count);
Result single_install(Theme_s theme);
Result shuffle_install(Theme_s *themes_list, int theme_count);
Result bgm_install(Theme_s bgm_to_install);
#endif