├── .gitignore ├── .clang-format ├── source ├── gfx │ ├── date.png │ ├── down.png │ ├── name.png │ ├── star.png │ ├── arrow.png │ ├── blade.png │ ├── blank.png │ ├── mouse.png │ ├── update.png │ ├── app_minus.png │ ├── app_new.png │ ├── app_plus.png │ ├── app_tick.png │ ├── apps_repo.png │ ├── apps_top.png │ ├── apps_top1.png │ ├── apps_top2.png │ ├── blue_dark.png │ ├── button_no.png │ ├── cat_all.png │ ├── cat_demo.png │ ├── cat_games.png │ ├── cat_media.png │ ├── gear_bg.png │ ├── guy_help.png │ ├── guy_menu.png │ ├── help_bg.png │ ├── no_image.png │ ├── rate_star.png │ ├── thumbs_up.png │ ├── version.png │ ├── about_blank.png │ ├── apps_bottom.png │ ├── apps_table.png │ ├── background.png │ ├── background3.png │ ├── blue_light.png │ ├── button_yes.png │ ├── control_gcn.png │ ├── down_clear.png │ ├── help_about.png │ ├── help_queue.png │ ├── menu_loader.png │ ├── menu_reboot.png │ ├── about_blank1.png │ ├── about_blank2.png │ ├── app_download.png │ ├── app_question.png │ ├── app_tick_small.png │ ├── apps_bottom1.png │ ├── apps_bottom2.png │ ├── apps_bottom3.png │ ├── apps_start_cat.png │ ├── apps_updated.png │ ├── blue_progress.png │ ├── blue_progress1.png │ ├── cat_emulator.png │ ├── cat_utilities.png │ ├── control_guitar.png │ ├── control_zapper.png │ ├── date_highlight.png │ ├── delete_button.png │ ├── down_highlight.png │ ├── download_frame.png │ ├── guy_settings.png │ ├── help_about_2.png │ ├── help_highlight.png │ ├── help_queue_2.png │ ├── help_queue_3.png │ ├── help_ratings.png │ ├── help_settings.png │ ├── help_sorting.png │ ├── help_sorting_2.png │ ├── menu_settings.png │ ├── name_highlight.png │ ├── setting_cross.png │ ├── sort_arrow_up.png │ ├── star_highlight.png │ ├── tool_tip_queue.png │ ├── tooltip_help.png │ ├── updated_close.png │ ├── apps_start_sort.png │ ├── apps_table_blank.png │ ├── blue_dark_small.png │ ├── blue_dark_small2.png │ ├── blue_light_small.png │ ├── control_classic.png │ ├── control_keyboard.png │ ├── control_nunchuck.png │ ├── control_wiimote.png │ ├── download_button.png │ ├── download_button1.png │ ├── help_controller.png │ ├── help_controller1.png │ ├── help_settings_2.png │ ├── help_settings_3.png │ ├── help_settings_4.png │ ├── help_settings_5.png │ ├── help_settings_6.png │ ├── help_settings_7.png │ ├── sort_arrow_down.png │ ├── update_highlight.png │ ├── button_no_highlight.png │ ├── cat_demo_highlight.png │ ├── cat_games_highlight.png │ ├── cat_media_highlight.png │ ├── control_wiimote_2.png │ ├── control_wiimote_3.png │ ├── control_wiimote_4.png │ ├── help_apps_installed.png │ ├── help_apps_listing.png │ ├── sd_card_highlight.png │ ├── thumbs_up_highlight.png │ ├── tool_tip_sort_date.png │ ├── tool_tip_sort_name.png │ ├── button_yes_highlight.png │ ├── down_clear_highlight.png │ ├── help_apps_information.png │ ├── help_download_update.png │ ├── menu_loader_highlight.png │ ├── menu_reboot_highlight.png │ ├── tool_tip_sort_rating.png │ ├── tool_tip_update_apps.png │ ├── cancel_download_prompt.png │ ├── cat_emulator_highlight.png │ ├── cat_utilities_highlight.png │ ├── delete_button_highlight.png │ ├── help_apps_information_2.png │ ├── help_download_update_2.png │ ├── help_download_update_3.png │ ├── menu_settings_highlight.png │ ├── tool_tip_download_apps.png │ ├── tool_tip_installedapps.png │ ├── tool_tip_sort_downloads.png │ ├── updated_close_highlight.png │ └── download_button_highlight.png ├── oggplayer.c ├── oggplayer.h ├── gfx-orig │ ├── date.png │ ├── down.png │ ├── name.png │ ├── star.png │ ├── arrow.png │ ├── blade.png │ ├── blank.png │ ├── mouse.png │ ├── rate_0.png │ ├── rate_1.png │ ├── rate_2.png │ ├── rate_3.png │ ├── rate_4.png │ ├── rate_5.png │ ├── raw2c.exe │ ├── update.png │ ├── app_minus.png │ ├── app_new.png │ ├── app_plus.png │ ├── app_tick.png │ ├── apps_repo.png │ ├── apps_top.png │ ├── apps_top1.png │ ├── apps_top2.png │ ├── blue_dark.png │ ├── button_no.png │ ├── cat_all.png │ ├── cat_demo.png │ ├── cat_games.png │ ├── cat_media.png │ ├── gear_bg.png │ ├── guy_help.png │ ├── guy_menu.png │ ├── help_bg.png │ ├── no_image.png │ ├── thumbs_up.png │ ├── version.png │ ├── about_blank.png │ ├── apps_bottom.png │ ├── apps_table.png │ ├── apps_table1.png │ ├── apps_table3.png │ ├── background.png │ ├── background3.png │ ├── blue_light.png │ ├── button_yes.png │ ├── control_gcn.png │ ├── down_clear.png │ ├── help_about.png │ ├── help_queue.png │ ├── menu_loader.png │ ├── menu_reboot.png │ ├── about_blank1.png │ ├── about_blank2.png │ ├── app_download.png │ ├── app_download1.png │ ├── app_download2.png │ ├── app_download22.png │ ├── app_question.png │ ├── app_tick_small.png │ ├── apps_bottom1.png │ ├── apps_bottom2.png │ ├── apps_bottom3.png │ ├── apps_start_cat.png │ ├── apps_updated.png │ ├── apps_updated2.png │ ├── blue_progress.png │ ├── blue_progress1.png │ ├── cat_emulator.png │ ├── cat_utilities.png │ ├── control_guitar.png │ ├── control_zapper.png │ ├── date_highlight.png │ ├── delete_button.png │ ├── down_highlight.png │ ├── download_frame.png │ ├── guy_settings.png │ ├── help_about_2.png │ ├── help_highlight.png │ ├── help_queue_2.png │ ├── help_queue_3.png │ ├── help_ratings.png │ ├── help_settings.png │ ├── help_sorting.png │ ├── help_sorting_2.png │ ├── menu_settings.png │ ├── name_highlight.png │ ├── setting_cross.png │ ├── sort_arrow_up.png │ ├── star_highlight.png │ ├── tool_tip_queue.png │ ├── tooltip_help.png │ ├── updated_close.png │ ├── apps_start_sort.png │ ├── apps_table_blank.png │ ├── blue_dark_small.png │ ├── blue_dark_small2.png │ ├── blue_light_small.png │ ├── control_classic.png │ ├── control_keyboard.png │ ├── control_nunchuck.png │ ├── control_wiimote.png │ ├── download_button.png │ ├── download_button1.png │ ├── help_controller.png │ ├── help_controller1.png │ ├── help_settings_2.png │ ├── help_settings_3.png │ ├── help_settings_4.png │ ├── help_settings_5.png │ ├── help_settings_6.png │ ├── help_settings_7.png │ ├── sort_arrow_down.png │ ├── update_highlight.png │ ├── apps_table_blank1.png │ ├── apps_table_blank3.png │ ├── button_no_highlight.png │ ├── cat_demo_highlight.png │ ├── cat_games_highlight.png │ ├── cat_media_highlight.png │ ├── control_wiimote_2.png │ ├── control_wiimote_3.png │ ├── control_wiimote_4.png │ ├── help_apps_installed.png │ ├── help_apps_listing.png │ ├── sd_card_highlight.png │ ├── thumbs_up_highlight.png │ ├── tool_tip_sort_date.png │ ├── tool_tip_sort_name.png │ ├── button_yes_highlight.png │ ├── down_clear_highlight.png │ ├── help_apps_information.png │ ├── help_download_update.png │ ├── menu_loader_highlight.png │ ├── menu_reboot_highlight.png │ ├── tool_tip_sort_rating.png │ ├── tool_tip_update_apps.png │ ├── cancel_download_prompt.png │ ├── cancel_download_prompt1.png │ ├── cat_emulator_highlight.png │ ├── cat_utilities_highlight.png │ ├── delete_button_highlight.png │ ├── help_apps_information_2.png │ ├── help_download_update_2.png │ ├── help_download_update_3.png │ ├── menu_settings_highlight.png │ ├── tool_tip_download_apps.png │ ├── tool_tip_installedapps.png │ ├── tool_tip_sort_downloads.png │ ├── updated_close_highlight.png │ ├── download_button_highlight.png │ ├── date.h │ ├── down.h │ ├── name.h │ ├── star.h │ ├── arrow.h │ ├── blade.h │ ├── blank.h │ ├── mouse.h │ ├── rate_0.h │ ├── rate_1.h │ ├── rate_2.h │ ├── rate_3.h │ ├── rate_4.h │ ├── rate_5.h │ ├── update.h │ ├── app_new.h │ ├── cat_all.h │ ├── gear_bg.h │ ├── help_bg.h │ ├── version.h │ ├── app_plus.h │ ├── app_tick.h │ ├── apps_top.h │ ├── apps_top.h1 │ ├── cat_demo.h │ ├── guy_help.h │ ├── guy_menu.h │ ├── no_image.h │ ├── app_minus.h │ ├── apps_repo.h │ ├── apps_top2.h │ ├── blue_dark.h │ ├── button_no.h │ ├── cat_games.h │ ├── cat_media.h │ ├── thumbs_up.h │ ├── apps_table.h │ ├── background.h │ ├── blue_light.h │ ├── button_yes.h │ ├── down_clear.h │ ├── help_about.h │ ├── help_queue.h │ ├── about_blank.h │ ├── apps_bottom.h │ ├── control_gcn.h │ ├── menu_loader.h │ ├── menu_reboot.h │ ├── app_download.h │ ├── app_question.h │ ├── apps_updated.h │ ├── cat_emulator.h │ ├── guy_settings.h │ ├── help_about_2.h │ ├── help_queue_2.h │ ├── help_queue_3.h │ ├── help_ratings.h │ ├── help_sorting.h │ ├── tooltip_help.h │ ├── blue_progress.h │ ├── cat_utilities.h │ ├── delete_button.h │ ├── help_settings.h │ ├── menu_settings.h │ ├── setting_cross.h │ ├── sort_arrow_up.h │ ├── updated_close.h │ ├── app_tick_small.h │ ├── apps_start_cat.h │ ├── control_guitar.h │ ├── control_zapper.h │ ├── date_highlight.h │ ├── down_highlight.h │ ├── download_frame.h │ ├── help_highlight.h │ ├── help_sorting_2.h │ ├── name_highlight.h │ ├── star_highlight.h │ ├── tool_tip_queue.h │ ├── apps_start_sort.h │ ├── blue_dark_small.h │ ├── control_classic.h │ ├── control_wiimote.h │ ├── download_button.h │ ├── help_controller.h │ ├── help_settings_2.h │ ├── help_settings_3.h │ ├── help_settings_4.h │ ├── help_settings_5.h │ ├── help_settings_6.h │ ├── help_settings_7.h │ ├── sort_arrow_down.h │ ├── apps_table_blank.h │ ├── blue_dark_small2.h │ ├── blue_light_small.h │ ├── control_keyboard.h │ ├── control_nunchuck.h │ ├── update_highlight.h │ ├── control_wiimote_2.h │ ├── control_wiimote_3.h │ ├── control_wiimote_4.h │ ├── help_apps_listing.h │ ├── sd_card_highlight.h │ ├── cat_demo_highlight.h │ ├── tool_tip_sort_date.h │ ├── tool_tip_sort_name.h │ ├── button_no_highlight.h │ ├── cat_games_highlight.h │ ├── cat_media_highlight.h │ ├── help_apps_installed.h │ ├── thumbs_up_highlight.h │ ├── button_yes_highlight.h │ ├── down_clear_highlight.h │ ├── help_download_update.h │ ├── tool_tip_sort_rating.h │ ├── tool_tip_update_apps.h │ ├── help_apps_information.h │ ├── menu_loader_highlight.h │ ├── menu_reboot_highlight.h │ ├── cancel_download_prompt.h │ ├── cat_emulator_highlight.h │ ├── help_download_update_2.h │ ├── help_download_update_3.h │ ├── tool_tip_download_apps.h │ ├── tool_tip_installedapps.h │ ├── cat_utilities_highlight.h │ ├── delete_button_highlight.h │ ├── help_apps_information_2.h │ ├── menu_settings_highlight.h │ ├── tool_tip_sort_downloads.h │ ├── updated_close_highlight.h │ ├── download_button_highlight.h │ ├── blue_progress.c │ ├── blank.c │ ├── arrow.c │ ├── blue_dark_small2.c │ ├── sort_arrow_up.c │ ├── control_wiimote.c │ └── blue_dark_small.c ├── GRRLIB │ ├── fonts │ │ ├── ttf_font.ttf │ │ └── GRRLIB_font1.png │ └── GRRLIB.h ├── music_player.h ├── storage.h ├── files.h ├── mp3player.h ├── unzip │ ├── miniunz.h │ ├── mztools.h │ └── ioapi.h ├── net_requests.h ├── settings.h ├── music_player.c ├── files.c └── storage.c └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | build 3 | *.dol 4 | *.elf 5 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: LLVM 3 | UseTab: Always 4 | IndentWidth: 4 5 | TabWidth: 4 6 | -------------------------------------------------------------------------------- /source/gfx/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/date.png -------------------------------------------------------------------------------- /source/gfx/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/down.png -------------------------------------------------------------------------------- /source/gfx/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/name.png -------------------------------------------------------------------------------- /source/gfx/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/star.png -------------------------------------------------------------------------------- /source/oggplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/oggplayer.c -------------------------------------------------------------------------------- /source/oggplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/oggplayer.h -------------------------------------------------------------------------------- /source/gfx/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/arrow.png -------------------------------------------------------------------------------- /source/gfx/blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blade.png -------------------------------------------------------------------------------- /source/gfx/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blank.png -------------------------------------------------------------------------------- /source/gfx/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/mouse.png -------------------------------------------------------------------------------- /source/gfx/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/update.png -------------------------------------------------------------------------------- /source/gfx-orig/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/date.png -------------------------------------------------------------------------------- /source/gfx-orig/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/down.png -------------------------------------------------------------------------------- /source/gfx-orig/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/name.png -------------------------------------------------------------------------------- /source/gfx-orig/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/star.png -------------------------------------------------------------------------------- /source/gfx/app_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/app_minus.png -------------------------------------------------------------------------------- /source/gfx/app_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/app_new.png -------------------------------------------------------------------------------- /source/gfx/app_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/app_plus.png -------------------------------------------------------------------------------- /source/gfx/app_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/app_tick.png -------------------------------------------------------------------------------- /source/gfx/apps_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_repo.png -------------------------------------------------------------------------------- /source/gfx/apps_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_top.png -------------------------------------------------------------------------------- /source/gfx/apps_top1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_top1.png -------------------------------------------------------------------------------- /source/gfx/apps_top2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_top2.png -------------------------------------------------------------------------------- /source/gfx/blue_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blue_dark.png -------------------------------------------------------------------------------- /source/gfx/button_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/button_no.png -------------------------------------------------------------------------------- /source/gfx/cat_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_all.png -------------------------------------------------------------------------------- /source/gfx/cat_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_demo.png -------------------------------------------------------------------------------- /source/gfx/cat_games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_games.png -------------------------------------------------------------------------------- /source/gfx/cat_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_media.png -------------------------------------------------------------------------------- /source/gfx/gear_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/gear_bg.png -------------------------------------------------------------------------------- /source/gfx/guy_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/guy_help.png -------------------------------------------------------------------------------- /source/gfx/guy_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/guy_menu.png -------------------------------------------------------------------------------- /source/gfx/help_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_bg.png -------------------------------------------------------------------------------- /source/gfx/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/no_image.png -------------------------------------------------------------------------------- /source/gfx/rate_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/rate_star.png -------------------------------------------------------------------------------- /source/gfx/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/thumbs_up.png -------------------------------------------------------------------------------- /source/gfx/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/version.png -------------------------------------------------------------------------------- /source/gfx-orig/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/arrow.png -------------------------------------------------------------------------------- /source/gfx-orig/blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blade.png -------------------------------------------------------------------------------- /source/gfx-orig/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blank.png -------------------------------------------------------------------------------- /source/gfx-orig/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/mouse.png -------------------------------------------------------------------------------- /source/gfx-orig/rate_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/rate_0.png -------------------------------------------------------------------------------- /source/gfx-orig/rate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/rate_1.png -------------------------------------------------------------------------------- /source/gfx-orig/rate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/rate_2.png -------------------------------------------------------------------------------- /source/gfx-orig/rate_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/rate_3.png -------------------------------------------------------------------------------- /source/gfx-orig/rate_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/rate_4.png -------------------------------------------------------------------------------- /source/gfx-orig/rate_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/rate_5.png -------------------------------------------------------------------------------- /source/gfx-orig/raw2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/raw2c.exe -------------------------------------------------------------------------------- /source/gfx-orig/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/update.png -------------------------------------------------------------------------------- /source/gfx/about_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/about_blank.png -------------------------------------------------------------------------------- /source/gfx/apps_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_bottom.png -------------------------------------------------------------------------------- /source/gfx/apps_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_table.png -------------------------------------------------------------------------------- /source/gfx/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/background.png -------------------------------------------------------------------------------- /source/gfx/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/background3.png -------------------------------------------------------------------------------- /source/gfx/blue_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blue_light.png -------------------------------------------------------------------------------- /source/gfx/button_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/button_yes.png -------------------------------------------------------------------------------- /source/gfx/control_gcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_gcn.png -------------------------------------------------------------------------------- /source/gfx/down_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/down_clear.png -------------------------------------------------------------------------------- /source/gfx/help_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_about.png -------------------------------------------------------------------------------- /source/gfx/help_queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_queue.png -------------------------------------------------------------------------------- /source/gfx/menu_loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/menu_loader.png -------------------------------------------------------------------------------- /source/gfx/menu_reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/menu_reboot.png -------------------------------------------------------------------------------- /source/gfx-orig/app_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_minus.png -------------------------------------------------------------------------------- /source/gfx-orig/app_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_new.png -------------------------------------------------------------------------------- /source/gfx-orig/app_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_plus.png -------------------------------------------------------------------------------- /source/gfx-orig/app_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_tick.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_repo.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_top.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_top1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_top1.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_top2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_top2.png -------------------------------------------------------------------------------- /source/gfx-orig/blue_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blue_dark.png -------------------------------------------------------------------------------- /source/gfx-orig/button_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/button_no.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_all.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_demo.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_games.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_media.png -------------------------------------------------------------------------------- /source/gfx-orig/gear_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/gear_bg.png -------------------------------------------------------------------------------- /source/gfx-orig/guy_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/guy_help.png -------------------------------------------------------------------------------- /source/gfx-orig/guy_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/guy_menu.png -------------------------------------------------------------------------------- /source/gfx-orig/help_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_bg.png -------------------------------------------------------------------------------- /source/gfx-orig/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/no_image.png -------------------------------------------------------------------------------- /source/gfx-orig/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/thumbs_up.png -------------------------------------------------------------------------------- /source/gfx-orig/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/version.png -------------------------------------------------------------------------------- /source/gfx/about_blank1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/about_blank1.png -------------------------------------------------------------------------------- /source/gfx/about_blank2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/about_blank2.png -------------------------------------------------------------------------------- /source/gfx/app_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/app_download.png -------------------------------------------------------------------------------- /source/gfx/app_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/app_question.png -------------------------------------------------------------------------------- /source/gfx/app_tick_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/app_tick_small.png -------------------------------------------------------------------------------- /source/gfx/apps_bottom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_bottom1.png -------------------------------------------------------------------------------- /source/gfx/apps_bottom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_bottom2.png -------------------------------------------------------------------------------- /source/gfx/apps_bottom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_bottom3.png -------------------------------------------------------------------------------- /source/gfx/apps_start_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_start_cat.png -------------------------------------------------------------------------------- /source/gfx/apps_updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_updated.png -------------------------------------------------------------------------------- /source/gfx/blue_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blue_progress.png -------------------------------------------------------------------------------- /source/gfx/blue_progress1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blue_progress1.png -------------------------------------------------------------------------------- /source/gfx/cat_emulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_emulator.png -------------------------------------------------------------------------------- /source/gfx/cat_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_utilities.png -------------------------------------------------------------------------------- /source/gfx/control_guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_guitar.png -------------------------------------------------------------------------------- /source/gfx/control_zapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_zapper.png -------------------------------------------------------------------------------- /source/gfx/date_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/date_highlight.png -------------------------------------------------------------------------------- /source/gfx/delete_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/delete_button.png -------------------------------------------------------------------------------- /source/gfx/down_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/down_highlight.png -------------------------------------------------------------------------------- /source/gfx/download_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/download_frame.png -------------------------------------------------------------------------------- /source/gfx/guy_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/guy_settings.png -------------------------------------------------------------------------------- /source/gfx/help_about_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_about_2.png -------------------------------------------------------------------------------- /source/gfx/help_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_highlight.png -------------------------------------------------------------------------------- /source/gfx/help_queue_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_queue_2.png -------------------------------------------------------------------------------- /source/gfx/help_queue_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_queue_3.png -------------------------------------------------------------------------------- /source/gfx/help_ratings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_ratings.png -------------------------------------------------------------------------------- /source/gfx/help_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_settings.png -------------------------------------------------------------------------------- /source/gfx/help_sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_sorting.png -------------------------------------------------------------------------------- /source/gfx/help_sorting_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_sorting_2.png -------------------------------------------------------------------------------- /source/gfx/menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/menu_settings.png -------------------------------------------------------------------------------- /source/gfx/name_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/name_highlight.png -------------------------------------------------------------------------------- /source/gfx/setting_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/setting_cross.png -------------------------------------------------------------------------------- /source/gfx/sort_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/sort_arrow_up.png -------------------------------------------------------------------------------- /source/gfx/star_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/star_highlight.png -------------------------------------------------------------------------------- /source/gfx/tool_tip_queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tool_tip_queue.png -------------------------------------------------------------------------------- /source/gfx/tooltip_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tooltip_help.png -------------------------------------------------------------------------------- /source/gfx/updated_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/updated_close.png -------------------------------------------------------------------------------- /source/gfx-orig/about_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/about_blank.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_bottom.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_table.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_table1.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_table3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_table3.png -------------------------------------------------------------------------------- /source/gfx-orig/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/background.png -------------------------------------------------------------------------------- /source/gfx-orig/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/background3.png -------------------------------------------------------------------------------- /source/gfx-orig/blue_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blue_light.png -------------------------------------------------------------------------------- /source/gfx-orig/button_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/button_yes.png -------------------------------------------------------------------------------- /source/gfx-orig/control_gcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_gcn.png -------------------------------------------------------------------------------- /source/gfx-orig/down_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/down_clear.png -------------------------------------------------------------------------------- /source/gfx-orig/help_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_about.png -------------------------------------------------------------------------------- /source/gfx-orig/help_queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_queue.png -------------------------------------------------------------------------------- /source/gfx-orig/menu_loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/menu_loader.png -------------------------------------------------------------------------------- /source/gfx-orig/menu_reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/menu_reboot.png -------------------------------------------------------------------------------- /source/gfx/apps_start_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_start_sort.png -------------------------------------------------------------------------------- /source/gfx/apps_table_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/apps_table_blank.png -------------------------------------------------------------------------------- /source/gfx/blue_dark_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blue_dark_small.png -------------------------------------------------------------------------------- /source/gfx/blue_dark_small2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blue_dark_small2.png -------------------------------------------------------------------------------- /source/gfx/blue_light_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/blue_light_small.png -------------------------------------------------------------------------------- /source/gfx/control_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_classic.png -------------------------------------------------------------------------------- /source/gfx/control_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_keyboard.png -------------------------------------------------------------------------------- /source/gfx/control_nunchuck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_nunchuck.png -------------------------------------------------------------------------------- /source/gfx/control_wiimote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_wiimote.png -------------------------------------------------------------------------------- /source/gfx/download_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/download_button.png -------------------------------------------------------------------------------- /source/gfx/download_button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/download_button1.png -------------------------------------------------------------------------------- /source/gfx/help_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_controller.png -------------------------------------------------------------------------------- /source/gfx/help_controller1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_controller1.png -------------------------------------------------------------------------------- /source/gfx/help_settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_settings_2.png -------------------------------------------------------------------------------- /source/gfx/help_settings_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_settings_3.png -------------------------------------------------------------------------------- /source/gfx/help_settings_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_settings_4.png -------------------------------------------------------------------------------- /source/gfx/help_settings_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_settings_5.png -------------------------------------------------------------------------------- /source/gfx/help_settings_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_settings_6.png -------------------------------------------------------------------------------- /source/gfx/help_settings_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_settings_7.png -------------------------------------------------------------------------------- /source/gfx/sort_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/sort_arrow_down.png -------------------------------------------------------------------------------- /source/gfx/update_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/update_highlight.png -------------------------------------------------------------------------------- /source/GRRLIB/fonts/ttf_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/GRRLIB/fonts/ttf_font.ttf -------------------------------------------------------------------------------- /source/gfx-orig/about_blank1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/about_blank1.png -------------------------------------------------------------------------------- /source/gfx-orig/about_blank2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/about_blank2.png -------------------------------------------------------------------------------- /source/gfx-orig/app_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_download.png -------------------------------------------------------------------------------- /source/gfx-orig/app_download1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_download1.png -------------------------------------------------------------------------------- /source/gfx-orig/app_download2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_download2.png -------------------------------------------------------------------------------- /source/gfx-orig/app_download22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_download22.png -------------------------------------------------------------------------------- /source/gfx-orig/app_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_question.png -------------------------------------------------------------------------------- /source/gfx-orig/app_tick_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/app_tick_small.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_bottom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_bottom1.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_bottom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_bottom2.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_bottom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_bottom3.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_start_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_start_cat.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_updated.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_updated2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_updated2.png -------------------------------------------------------------------------------- /source/gfx-orig/blue_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blue_progress.png -------------------------------------------------------------------------------- /source/gfx-orig/blue_progress1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blue_progress1.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_emulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_emulator.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_utilities.png -------------------------------------------------------------------------------- /source/gfx-orig/control_guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_guitar.png -------------------------------------------------------------------------------- /source/gfx-orig/control_zapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_zapper.png -------------------------------------------------------------------------------- /source/gfx-orig/date_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/date_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/delete_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/delete_button.png -------------------------------------------------------------------------------- /source/gfx-orig/down_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/down_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/download_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/download_frame.png -------------------------------------------------------------------------------- /source/gfx-orig/guy_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/guy_settings.png -------------------------------------------------------------------------------- /source/gfx-orig/help_about_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_about_2.png -------------------------------------------------------------------------------- /source/gfx-orig/help_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/help_queue_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_queue_2.png -------------------------------------------------------------------------------- /source/gfx-orig/help_queue_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_queue_3.png -------------------------------------------------------------------------------- /source/gfx-orig/help_ratings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_ratings.png -------------------------------------------------------------------------------- /source/gfx-orig/help_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_settings.png -------------------------------------------------------------------------------- /source/gfx-orig/help_sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_sorting.png -------------------------------------------------------------------------------- /source/gfx-orig/help_sorting_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_sorting_2.png -------------------------------------------------------------------------------- /source/gfx-orig/menu_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/menu_settings.png -------------------------------------------------------------------------------- /source/gfx-orig/name_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/name_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/setting_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/setting_cross.png -------------------------------------------------------------------------------- /source/gfx-orig/sort_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/sort_arrow_up.png -------------------------------------------------------------------------------- /source/gfx-orig/star_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/star_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tool_tip_queue.png -------------------------------------------------------------------------------- /source/gfx-orig/tooltip_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tooltip_help.png -------------------------------------------------------------------------------- /source/gfx-orig/updated_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/updated_close.png -------------------------------------------------------------------------------- /source/gfx/button_no_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/button_no_highlight.png -------------------------------------------------------------------------------- /source/gfx/cat_demo_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_demo_highlight.png -------------------------------------------------------------------------------- /source/gfx/cat_games_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_games_highlight.png -------------------------------------------------------------------------------- /source/gfx/cat_media_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_media_highlight.png -------------------------------------------------------------------------------- /source/gfx/control_wiimote_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_wiimote_2.png -------------------------------------------------------------------------------- /source/gfx/control_wiimote_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_wiimote_3.png -------------------------------------------------------------------------------- /source/gfx/control_wiimote_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/control_wiimote_4.png -------------------------------------------------------------------------------- /source/gfx/help_apps_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_apps_installed.png -------------------------------------------------------------------------------- /source/gfx/help_apps_listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_apps_listing.png -------------------------------------------------------------------------------- /source/gfx/sd_card_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/sd_card_highlight.png -------------------------------------------------------------------------------- /source/gfx/thumbs_up_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/thumbs_up_highlight.png -------------------------------------------------------------------------------- /source/gfx/tool_tip_sort_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tool_tip_sort_date.png -------------------------------------------------------------------------------- /source/gfx/tool_tip_sort_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tool_tip_sort_name.png -------------------------------------------------------------------------------- /source/GRRLIB/fonts/GRRLIB_font1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/GRRLIB/fonts/GRRLIB_font1.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_start_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_start_sort.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_table_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_table_blank.png -------------------------------------------------------------------------------- /source/gfx-orig/blue_dark_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blue_dark_small.png -------------------------------------------------------------------------------- /source/gfx-orig/blue_dark_small2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blue_dark_small2.png -------------------------------------------------------------------------------- /source/gfx-orig/blue_light_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/blue_light_small.png -------------------------------------------------------------------------------- /source/gfx-orig/control_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_classic.png -------------------------------------------------------------------------------- /source/gfx-orig/control_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_keyboard.png -------------------------------------------------------------------------------- /source/gfx-orig/control_nunchuck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_nunchuck.png -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_wiimote.png -------------------------------------------------------------------------------- /source/gfx-orig/download_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/download_button.png -------------------------------------------------------------------------------- /source/gfx-orig/download_button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/download_button1.png -------------------------------------------------------------------------------- /source/gfx-orig/help_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_controller.png -------------------------------------------------------------------------------- /source/gfx-orig/help_controller1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_controller1.png -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_settings_2.png -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_settings_3.png -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_settings_4.png -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_settings_5.png -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_settings_6.png -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_settings_7.png -------------------------------------------------------------------------------- /source/gfx-orig/sort_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/sort_arrow_down.png -------------------------------------------------------------------------------- /source/gfx-orig/update_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/update_highlight.png -------------------------------------------------------------------------------- /source/gfx/button_yes_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/button_yes_highlight.png -------------------------------------------------------------------------------- /source/gfx/down_clear_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/down_clear_highlight.png -------------------------------------------------------------------------------- /source/gfx/help_apps_information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_apps_information.png -------------------------------------------------------------------------------- /source/gfx/help_download_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_download_update.png -------------------------------------------------------------------------------- /source/gfx/menu_loader_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/menu_loader_highlight.png -------------------------------------------------------------------------------- /source/gfx/menu_reboot_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/menu_reboot_highlight.png -------------------------------------------------------------------------------- /source/gfx/tool_tip_sort_rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tool_tip_sort_rating.png -------------------------------------------------------------------------------- /source/gfx/tool_tip_update_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tool_tip_update_apps.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_table_blank1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_table_blank1.png -------------------------------------------------------------------------------- /source/gfx-orig/apps_table_blank3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/apps_table_blank3.png -------------------------------------------------------------------------------- /source/gfx-orig/button_no_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/button_no_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_demo_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_demo_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_games_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_games_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_media_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_media_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_wiimote_2.png -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_wiimote_3.png -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/control_wiimote_4.png -------------------------------------------------------------------------------- /source/gfx-orig/help_apps_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_apps_installed.png -------------------------------------------------------------------------------- /source/gfx-orig/help_apps_listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_apps_listing.png -------------------------------------------------------------------------------- /source/gfx-orig/sd_card_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/sd_card_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/thumbs_up_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/thumbs_up_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_sort_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tool_tip_sort_date.png -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_sort_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tool_tip_sort_name.png -------------------------------------------------------------------------------- /source/gfx/cancel_download_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cancel_download_prompt.png -------------------------------------------------------------------------------- /source/gfx/cat_emulator_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_emulator_highlight.png -------------------------------------------------------------------------------- /source/gfx/cat_utilities_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/cat_utilities_highlight.png -------------------------------------------------------------------------------- /source/gfx/delete_button_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/delete_button_highlight.png -------------------------------------------------------------------------------- /source/gfx/help_apps_information_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_apps_information_2.png -------------------------------------------------------------------------------- /source/gfx/help_download_update_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_download_update_2.png -------------------------------------------------------------------------------- /source/gfx/help_download_update_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/help_download_update_3.png -------------------------------------------------------------------------------- /source/gfx/menu_settings_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/menu_settings_highlight.png -------------------------------------------------------------------------------- /source/gfx/tool_tip_download_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tool_tip_download_apps.png -------------------------------------------------------------------------------- /source/gfx/tool_tip_installedapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tool_tip_installedapps.png -------------------------------------------------------------------------------- /source/gfx/tool_tip_sort_downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/tool_tip_sort_downloads.png -------------------------------------------------------------------------------- /source/gfx/updated_close_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/updated_close_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/button_yes_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/button_yes_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/down_clear_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/down_clear_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/help_apps_information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_apps_information.png -------------------------------------------------------------------------------- /source/gfx-orig/help_download_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_download_update.png -------------------------------------------------------------------------------- /source/gfx-orig/menu_loader_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/menu_loader_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/menu_reboot_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/menu_reboot_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_sort_rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tool_tip_sort_rating.png -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_update_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tool_tip_update_apps.png -------------------------------------------------------------------------------- /source/gfx/download_button_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx/download_button_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/cancel_download_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cancel_download_prompt.png -------------------------------------------------------------------------------- /source/gfx-orig/cancel_download_prompt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cancel_download_prompt1.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_emulator_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_emulator_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/cat_utilities_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/cat_utilities_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/delete_button_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/delete_button_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/help_apps_information_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_apps_information_2.png -------------------------------------------------------------------------------- /source/gfx-orig/help_download_update_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_download_update_2.png -------------------------------------------------------------------------------- /source/gfx-orig/help_download_update_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/help_download_update_3.png -------------------------------------------------------------------------------- /source/gfx-orig/menu_settings_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/menu_settings_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_download_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tool_tip_download_apps.png -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_installedapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tool_tip_installedapps.png -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_sort_downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/tool_tip_sort_downloads.png -------------------------------------------------------------------------------- /source/gfx-orig/updated_close_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/updated_close_highlight.png -------------------------------------------------------------------------------- /source/gfx-orig/download_button_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShopChannel/OSCHomebrewBrowser/HEAD/source/gfx-orig/download_button_highlight.png -------------------------------------------------------------------------------- /source/music_player.h: -------------------------------------------------------------------------------- 1 | /* Manages music for the Homebrew Browser. */ 2 | #include 3 | 4 | s32 initialise_music(); 5 | void initialise_mod_music(); 6 | void stop_mod_music(); 7 | void play_mod_music(); 8 | -------------------------------------------------------------------------------- /source/storage.h: -------------------------------------------------------------------------------- 1 | /* Manager for storage devices in the Homebrew Browser. */ 2 | #define METHOD_SD 1 3 | #define METHOD_USB 2 4 | 5 | extern bool sd_mounted; 6 | extern bool usb_mounted; 7 | 8 | void initialise_fat(); -------------------------------------------------------------------------------- /source/GRRLIB/GRRLIB.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef GRRLIB_COMP 3 | #define GRRLIB_COMP 4 | 5 | #include 6 | 7 | void GRRLIB_InitFreetype(); 8 | GRRLIB_texImg *GRRLIB_TextToTexture(const char *string, unsigned int fontSize, unsigned int fontColour); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /source/files.h: -------------------------------------------------------------------------------- 1 | /* Manager for file/directory operations in the Homebrew Browser. */ 2 | #include 3 | 4 | bool remove_file(char *path); 5 | bool remove_dir(char *path); 6 | bool delete_dir_files(char *path); 7 | bool create_dir(char *path); 8 | bool create_parent_dirs(char *path); 9 | char *app_path(char *app_name, char *app_file); 10 | FILE *hbb_fopen(char *filename, const char *mode); 11 | char *device_name(); 12 | char *temp_path(); 13 | -------------------------------------------------------------------------------- /source/gfx-orig/date.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _date_h_ 8 | #define _date_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char date[]; 11 | extern const int date_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_date_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/down.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _down_h_ 8 | #define _down_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char down[]; 11 | extern const int down_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_down_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/name.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _name_h_ 8 | #define _name_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char name[]; 11 | extern const int name_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_name_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/star.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _star_h_ 8 | #define _star_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char star[]; 11 | extern const int star_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_star_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/arrow.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _arrow_h_ 8 | #define _arrow_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char arrow[]; 11 | extern const int arrow_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_arrow_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/blade.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _blade_h_ 8 | #define _blade_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char blade[]; 11 | extern const int blade_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_blade_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/blank.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _blank_h_ 8 | #define _blank_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char blank[]; 11 | extern const int blank_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_blank_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/mouse.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _mouse_h_ 8 | #define _mouse_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char mouse[]; 11 | extern const int mouse_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_mouse_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/rate_0.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _rate_0_h_ 8 | #define _rate_0_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char rate_0[]; 11 | extern const int rate_0_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_rate_0_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/rate_1.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _rate_1_h_ 8 | #define _rate_1_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char rate_1[]; 11 | extern const int rate_1_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_rate_1_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/rate_2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _rate_2_h_ 8 | #define _rate_2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char rate_2[]; 11 | extern const int rate_2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_rate_2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/rate_3.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _rate_3_h_ 8 | #define _rate_3_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char rate_3[]; 11 | extern const int rate_3_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_rate_3_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/rate_4.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _rate_4_h_ 8 | #define _rate_4_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char rate_4[]; 11 | extern const int rate_4_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_rate_4_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/rate_5.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _rate_5_h_ 8 | #define _rate_5_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char rate_5[]; 11 | extern const int rate_5_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_rate_5_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/update.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _update_h_ 8 | #define _update_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char update[]; 11 | extern const int update_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_update_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/app_new.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _app_new_h_ 8 | #define _app_new_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char app_new[]; 11 | extern const int app_new_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_app_new_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_all.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_all_h_ 8 | #define _cat_all_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_all[]; 11 | extern const int cat_all_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_all_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/gear_bg.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _gear_bg_h_ 8 | #define _gear_bg_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char gear_bg[]; 11 | extern const int gear_bg_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_gear_bg_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_bg.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_bg_h_ 8 | #define _help_bg_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_bg[]; 11 | extern const int help_bg_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_bg_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/version.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _version_h_ 8 | #define _version_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char version[]; 11 | extern const int version_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_version_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/app_plus.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _app_plus_h_ 8 | #define _app_plus_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char app_plus[]; 11 | extern const int app_plus_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_app_plus_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/app_tick.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _app_tick_h_ 8 | #define _app_tick_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char app_tick[]; 11 | extern const int app_tick_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_app_tick_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_top.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_top_h_ 8 | #define _apps_top_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_top[]; 11 | extern const int apps_top_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_top_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_top.h1: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_top_h_ 8 | #define _apps_top_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_top[]; 11 | extern const int apps_top_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_top_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_demo.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_demo_h_ 8 | #define _cat_demo_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_demo[]; 11 | extern const int cat_demo_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_demo_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/guy_help.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _guy_help_h_ 8 | #define _guy_help_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char guy_help[]; 11 | extern const int guy_help_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_guy_help_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/guy_menu.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _guy_menu_h_ 8 | #define _guy_menu_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char guy_menu[]; 11 | extern const int guy_menu_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_guy_menu_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/no_image.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _no_image_h_ 8 | #define _no_image_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char no_image[]; 11 | extern const int no_image_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_no_image_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/app_minus.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _app_minus_h_ 8 | #define _app_minus_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char app_minus[]; 11 | extern const int app_minus_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_app_minus_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_repo.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_repo_h_ 8 | #define _apps_repo_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_repo[]; 11 | extern const int apps_repo_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_repo_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_top2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_top2_h_ 8 | #define _apps_top2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_top2[]; 11 | extern const int apps_top2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_top2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/blue_dark.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _blue_dark_h_ 8 | #define _blue_dark_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char blue_dark[]; 11 | extern const int blue_dark_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_blue_dark_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/button_no.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _button_no_h_ 8 | #define _button_no_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char button_no[]; 11 | extern const int button_no_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_button_no_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_games.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_games_h_ 8 | #define _cat_games_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_games[]; 11 | extern const int cat_games_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_games_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_media.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_media_h_ 8 | #define _cat_media_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_media[]; 11 | extern const int cat_media_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_media_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/thumbs_up.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _thumbs_up_h_ 8 | #define _thumbs_up_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char thumbs_up[]; 11 | extern const int thumbs_up_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_thumbs_up_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_table.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_table_h_ 8 | #define _apps_table_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_table[]; 11 | extern const int apps_table_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_table_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/background.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _background_h_ 8 | #define _background_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char background[]; 11 | extern const int background_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_background_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/blue_light.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _blue_light_h_ 8 | #define _blue_light_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char blue_light[]; 11 | extern const int blue_light_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_blue_light_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/button_yes.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _button_yes_h_ 8 | #define _button_yes_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char button_yes[]; 11 | extern const int button_yes_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_button_yes_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/down_clear.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _down_clear_h_ 8 | #define _down_clear_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char down_clear[]; 11 | extern const int down_clear_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_down_clear_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_about.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_about_h_ 8 | #define _help_about_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_about[]; 11 | extern const int help_about_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_about_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_queue.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_queue_h_ 8 | #define _help_queue_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_queue[]; 11 | extern const int help_queue_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_queue_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/about_blank.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _about_blank_h_ 8 | #define _about_blank_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char about_blank[]; 11 | extern const int about_blank_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_about_blank_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_bottom.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_bottom_h_ 8 | #define _apps_bottom_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_bottom[]; 11 | extern const int apps_bottom_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_bottom_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_gcn.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_gcn_h_ 8 | #define _control_gcn_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_gcn[]; 11 | extern const int control_gcn_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_gcn_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/menu_loader.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _menu_loader_h_ 8 | #define _menu_loader_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char menu_loader[]; 11 | extern const int menu_loader_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_menu_loader_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/menu_reboot.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _menu_reboot_h_ 8 | #define _menu_reboot_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char menu_reboot[]; 11 | extern const int menu_reboot_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_menu_reboot_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/app_download.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _app_download_h_ 8 | #define _app_download_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char app_download[]; 11 | extern const int app_download_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_app_download_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/app_question.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _app_question_h_ 8 | #define _app_question_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char app_question[]; 11 | extern const int app_question_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_app_question_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_updated.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_updated_h_ 8 | #define _apps_updated_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_updated[]; 11 | extern const int apps_updated_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_updated_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_emulator.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_emulator_h_ 8 | #define _cat_emulator_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_emulator[]; 11 | extern const int cat_emulator_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_emulator_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/guy_settings.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _guy_settings_h_ 8 | #define _guy_settings_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char guy_settings[]; 11 | extern const int guy_settings_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_guy_settings_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_about_2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_about_2_h_ 8 | #define _help_about_2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_about_2[]; 11 | extern const int help_about_2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_about_2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_queue_2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_queue_2_h_ 8 | #define _help_queue_2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_queue_2[]; 11 | extern const int help_queue_2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_queue_2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_queue_3.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_queue_3_h_ 8 | #define _help_queue_3_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_queue_3[]; 11 | extern const int help_queue_3_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_queue_3_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_ratings.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_ratings_h_ 8 | #define _help_ratings_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_ratings[]; 11 | extern const int help_ratings_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_ratings_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_sorting.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_sorting_h_ 8 | #define _help_sorting_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_sorting[]; 11 | extern const int help_sorting_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_sorting_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tooltip_help.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tooltip_help_h_ 8 | #define _tooltip_help_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tooltip_help[]; 11 | extern const int tooltip_help_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tooltip_help_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/blue_progress.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _blue_progress_h_ 8 | #define _blue_progress_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char blue_progress[]; 11 | extern const int blue_progress_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_blue_progress_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_utilities.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_utilities_h_ 8 | #define _cat_utilities_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_utilities[]; 11 | extern const int cat_utilities_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_utilities_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/delete_button.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _delete_button_h_ 8 | #define _delete_button_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char delete_button[]; 11 | extern const int delete_button_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_delete_button_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_settings.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_settings_h_ 8 | #define _help_settings_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_settings[]; 11 | extern const int help_settings_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_settings_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/menu_settings.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _menu_settings_h_ 8 | #define _menu_settings_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char menu_settings[]; 11 | extern const int menu_settings_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_menu_settings_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/setting_cross.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _setting_cross_h_ 8 | #define _setting_cross_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char setting_cross[]; 11 | extern const int setting_cross_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_setting_cross_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/sort_arrow_up.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _sort_arrow_up_h_ 8 | #define _sort_arrow_up_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char sort_arrow_up[]; 11 | extern const int sort_arrow_up_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_sort_arrow_up_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/updated_close.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _updated_close_h_ 8 | #define _updated_close_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char updated_close[]; 11 | extern const int updated_close_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_updated_close_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/app_tick_small.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _app_tick_small_h_ 8 | #define _app_tick_small_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char app_tick_small[]; 11 | extern const int app_tick_small_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_app_tick_small_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_start_cat.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_start_cat_h_ 8 | #define _apps_start_cat_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_start_cat[]; 11 | extern const int apps_start_cat_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_start_cat_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_guitar.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_guitar_h_ 8 | #define _control_guitar_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_guitar[]; 11 | extern const int control_guitar_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_guitar_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_zapper.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_zapper_h_ 8 | #define _control_zapper_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_zapper[]; 11 | extern const int control_zapper_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_zapper_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/date_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _date_highlight_h_ 8 | #define _date_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char date_highlight[]; 11 | extern const int date_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_date_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/down_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _down_highlight_h_ 8 | #define _down_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char down_highlight[]; 11 | extern const int down_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_down_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/download_frame.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _download_frame_h_ 8 | #define _download_frame_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char download_frame[]; 11 | extern const int download_frame_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_download_frame_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_highlight_h_ 8 | #define _help_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_highlight[]; 11 | extern const int help_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_sorting_2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_sorting_2_h_ 8 | #define _help_sorting_2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_sorting_2[]; 11 | extern const int help_sorting_2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_sorting_2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/name_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _name_highlight_h_ 8 | #define _name_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char name_highlight[]; 11 | extern const int name_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_name_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/star_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _star_highlight_h_ 8 | #define _star_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char star_highlight[]; 11 | extern const int star_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_star_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_queue.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tool_tip_queue_h_ 8 | #define _tool_tip_queue_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tool_tip_queue[]; 11 | extern const int tool_tip_queue_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tool_tip_queue_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_start_sort.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_start_sort_h_ 8 | #define _apps_start_sort_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_start_sort[]; 11 | extern const int apps_start_sort_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_start_sort_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/blue_dark_small.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _blue_dark_small_h_ 8 | #define _blue_dark_small_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char blue_dark_small[]; 11 | extern const int blue_dark_small_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_blue_dark_small_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_classic.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_classic_h_ 8 | #define _control_classic_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_classic[]; 11 | extern const int control_classic_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_classic_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_wiimote_h_ 8 | #define _control_wiimote_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_wiimote[]; 11 | extern const int control_wiimote_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_wiimote_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/download_button.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _download_button_h_ 8 | #define _download_button_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char download_button[]; 11 | extern const int download_button_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_download_button_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_controller.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_controller_h_ 8 | #define _help_controller_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_controller[]; 11 | extern const int help_controller_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_controller_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_settings_2_h_ 8 | #define _help_settings_2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_settings_2[]; 11 | extern const int help_settings_2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_settings_2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_3.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_settings_3_h_ 8 | #define _help_settings_3_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_settings_3[]; 11 | extern const int help_settings_3_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_settings_3_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_4.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_settings_4_h_ 8 | #define _help_settings_4_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_settings_4[]; 11 | extern const int help_settings_4_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_settings_4_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_5.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_settings_5_h_ 8 | #define _help_settings_5_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_settings_5[]; 11 | extern const int help_settings_5_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_settings_5_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_6.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_settings_6_h_ 8 | #define _help_settings_6_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_settings_6[]; 11 | extern const int help_settings_6_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_settings_6_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_settings_7.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_settings_7_h_ 8 | #define _help_settings_7_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_settings_7[]; 11 | extern const int help_settings_7_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_settings_7_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/sort_arrow_down.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _sort_arrow_down_h_ 8 | #define _sort_arrow_down_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char sort_arrow_down[]; 11 | extern const int sort_arrow_down_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_sort_arrow_down_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/apps_table_blank.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _apps_table_blank_h_ 8 | #define _apps_table_blank_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char apps_table_blank[]; 11 | extern const int apps_table_blank_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_apps_table_blank_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/blue_dark_small2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _blue_dark_small2_h_ 8 | #define _blue_dark_small2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char blue_dark_small2[]; 11 | extern const int blue_dark_small2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_blue_dark_small2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/blue_light_small.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _blue_light_small_h_ 8 | #define _blue_light_small_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char blue_light_small[]; 11 | extern const int blue_light_small_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_blue_light_small_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_keyboard.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_keyboard_h_ 8 | #define _control_keyboard_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_keyboard[]; 11 | extern const int control_keyboard_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_keyboard_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_nunchuck.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_nunchuck_h_ 8 | #define _control_nunchuck_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_nunchuck[]; 11 | extern const int control_nunchuck_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_nunchuck_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/update_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _update_highlight_h_ 8 | #define _update_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char update_highlight[]; 11 | extern const int update_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_update_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote_2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_wiimote_2_h_ 8 | #define _control_wiimote_2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_wiimote_2[]; 11 | extern const int control_wiimote_2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_wiimote_2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote_3.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_wiimote_3_h_ 8 | #define _control_wiimote_3_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_wiimote_3[]; 11 | extern const int control_wiimote_3_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_wiimote_3_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote_4.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _control_wiimote_4_h_ 8 | #define _control_wiimote_4_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char control_wiimote_4[]; 11 | extern const int control_wiimote_4_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_control_wiimote_4_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_apps_listing.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_apps_listing_h_ 8 | #define _help_apps_listing_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_apps_listing[]; 11 | extern const int help_apps_listing_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_apps_listing_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/sd_card_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _sd_card_highlight_h_ 8 | #define _sd_card_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char sd_card_highlight[]; 11 | extern const int sd_card_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_sd_card_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_demo_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_demo_highlight_h_ 8 | #define _cat_demo_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_demo_highlight[]; 11 | extern const int cat_demo_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_demo_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_sort_date.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tool_tip_sort_date_h_ 8 | #define _tool_tip_sort_date_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tool_tip_sort_date[]; 11 | extern const int tool_tip_sort_date_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tool_tip_sort_date_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_sort_name.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tool_tip_sort_name_h_ 8 | #define _tool_tip_sort_name_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tool_tip_sort_name[]; 11 | extern const int tool_tip_sort_name_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tool_tip_sort_name_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/button_no_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _button_no_highlight_h_ 8 | #define _button_no_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char button_no_highlight[]; 11 | extern const int button_no_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_button_no_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_games_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_games_highlight_h_ 8 | #define _cat_games_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_games_highlight[]; 11 | extern const int cat_games_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_games_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_media_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_media_highlight_h_ 8 | #define _cat_media_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_media_highlight[]; 11 | extern const int cat_media_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_media_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_apps_installed.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_apps_installed_h_ 8 | #define _help_apps_installed_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_apps_installed[]; 11 | extern const int help_apps_installed_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_apps_installed_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/thumbs_up_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _thumbs_up_highlight_h_ 8 | #define _thumbs_up_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char thumbs_up_highlight[]; 11 | extern const int thumbs_up_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_thumbs_up_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/button_yes_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _button_yes_highlight_h_ 8 | #define _button_yes_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char button_yes_highlight[]; 11 | extern const int button_yes_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_button_yes_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/down_clear_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _down_clear_highlight_h_ 8 | #define _down_clear_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char down_clear_highlight[]; 11 | extern const int down_clear_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_down_clear_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_download_update.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_download_update_h_ 8 | #define _help_download_update_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_download_update[]; 11 | extern const int help_download_update_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_download_update_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_sort_rating.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tool_tip_sort_rating_h_ 8 | #define _tool_tip_sort_rating_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tool_tip_sort_rating[]; 11 | extern const int tool_tip_sort_rating_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tool_tip_sort_rating_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_update_apps.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tool_tip_update_apps_h_ 8 | #define _tool_tip_update_apps_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tool_tip_update_apps[]; 11 | extern const int tool_tip_update_apps_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tool_tip_update_apps_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_apps_information.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_apps_information_h_ 8 | #define _help_apps_information_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_apps_information[]; 11 | extern const int help_apps_information_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_apps_information_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/menu_loader_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _menu_loader_highlight_h_ 8 | #define _menu_loader_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char menu_loader_highlight[]; 11 | extern const int menu_loader_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_menu_loader_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/menu_reboot_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _menu_reboot_highlight_h_ 8 | #define _menu_reboot_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char menu_reboot_highlight[]; 11 | extern const int menu_reboot_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_menu_reboot_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cancel_download_prompt.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cancel_download_prompt_h_ 8 | #define _cancel_download_prompt_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cancel_download_prompt[]; 11 | extern const int cancel_download_prompt_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cancel_download_prompt_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_emulator_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_emulator_highlight_h_ 8 | #define _cat_emulator_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_emulator_highlight[]; 11 | extern const int cat_emulator_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_emulator_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_download_update_2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_download_update_2_h_ 8 | #define _help_download_update_2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_download_update_2[]; 11 | extern const int help_download_update_2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_download_update_2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_download_update_3.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_download_update_3_h_ 8 | #define _help_download_update_3_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_download_update_3[]; 11 | extern const int help_download_update_3_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_download_update_3_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_download_apps.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tool_tip_download_apps_h_ 8 | #define _tool_tip_download_apps_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tool_tip_download_apps[]; 11 | extern const int tool_tip_download_apps_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tool_tip_download_apps_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_installedapps.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tool_tip_installedapps_h_ 8 | #define _tool_tip_installedapps_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tool_tip_installedapps[]; 11 | extern const int tool_tip_installedapps_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tool_tip_installedapps_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/cat_utilities_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _cat_utilities_highlight_h_ 8 | #define _cat_utilities_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char cat_utilities_highlight[]; 11 | extern const int cat_utilities_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_cat_utilities_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/delete_button_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _delete_button_highlight_h_ 8 | #define _delete_button_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char delete_button_highlight[]; 11 | extern const int delete_button_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_delete_button_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/help_apps_information_2.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _help_apps_information_2_h_ 8 | #define _help_apps_information_2_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char help_apps_information_2[]; 11 | extern const int help_apps_information_2_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_help_apps_information_2_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/menu_settings_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _menu_settings_highlight_h_ 8 | #define _menu_settings_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char menu_settings_highlight[]; 11 | extern const int menu_settings_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_menu_settings_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/tool_tip_sort_downloads.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _tool_tip_sort_downloads_h_ 8 | #define _tool_tip_sort_downloads_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char tool_tip_sort_downloads[]; 11 | extern const int tool_tip_sort_downloads_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_tool_tip_sort_downloads_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/updated_close_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _updated_close_highlight_h_ 8 | #define _updated_close_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char updated_close_highlight[]; 11 | extern const int updated_close_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_updated_close_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/gfx-orig/download_button_highlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | //--------------------------------------------------------------------------------- 7 | #ifndef _download_button_highlight_h_ 8 | #define _download_button_highlight_h_ 9 | //--------------------------------------------------------------------------------- 10 | extern const unsigned char download_button_highlight[]; 11 | extern const int download_button_highlight_size; 12 | //--------------------------------------------------------------------------------- 13 | #endif //_download_button_highlight_h_ 14 | //--------------------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /source/mp3player.h: -------------------------------------------------------------------------------- 1 | // copied from the in-source libmad of libogc 2 | #ifndef __MP3PLAYER_H__ 3 | #define __MP3PLAYER_H__ 4 | 5 | #include 6 | #include 7 | 8 | #ifdef __cplusplus 9 | extern "C" { 10 | #endif /* __cplusplus */ 11 | 12 | void MP3Player_Init(void); 13 | void MP3Player_Stop(void); 14 | BOOL MP3Player_IsPlaying(void); 15 | void MP3Player_Volume(u32 volume); 16 | s32 MP3Player_PlayBuffer(const void *buffer,s32 len,void (*filterfunc)(struct mad_stream *,struct mad_frame *)); 17 | s32 MP3Player_PlayFile(void *cb_data,s32 (*reader)(void *,void *,s32),void (*filterfunc)(struct mad_stream *,struct mad_frame *)); 18 | 19 | #ifdef __cplusplus 20 | } 21 | #endif /* __cplusplus */ 22 | 23 | #endif 24 | -------------------------------------------------------------------------------- /source/unzip/miniunz.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _miniunz_H 3 | #define _miniunz_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | int extractZip(unzFile uf,int opt_extract_without_path,int opt_overwrite,const char* password); 10 | int extractZipOnefile(unzFile uf,const char* filename,int opt_extract_without_path,int opt_overwrite,const char* password); 11 | int makedir(char *newdir); 12 | int zipInfo(unzFile uf); 13 | 14 | extern int zip_size; 15 | extern long zip_progress; 16 | extern long extract_part_size; 17 | extern bool cancel_extract; 18 | extern bool hbb_updating; 19 | extern int unzip_file_counter; 20 | extern int unzip_file_count; 21 | extern char no_unzip_list[10][300]; 22 | extern int no_unzip_count; 23 | 24 | #ifdef __cplusplus 25 | } 26 | #endif 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /source/unzip/mztools.h: -------------------------------------------------------------------------------- 1 | /* 2 | Additional tools for Minizip 3 | Code: Xavier Roche '2004 4 | License: Same as ZLIB (www.gzip.org) 5 | */ 6 | 7 | #ifndef _zip_tools_H 8 | #define _zip_tools_H 9 | 10 | #ifdef __cplusplus 11 | extern "C" { 12 | #endif 13 | 14 | #ifndef _ZLIB_H 15 | #include "zlib.h" 16 | #endif 17 | 18 | #include "unzip.h" 19 | 20 | /* Repair a ZIP file (missing central directory) 21 | file: file to recover 22 | fileOut: output file after recovery 23 | fileOutTmp: temporary file name used for recovery 24 | */ 25 | extern int ZEXPORT unzRepair(const char* file, 26 | const char* fileOut, 27 | const char* fileOutTmp, 28 | uLong* nRecovered, 29 | uLong* bytesRecovered); 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /source/net_requests.h: -------------------------------------------------------------------------------- 1 | /* Common cURL networking functions. */ 2 | #include "common.h" 3 | #include 4 | 5 | #define USER_AGENT "OSC Homebrew Browser/1.0" 6 | 7 | // Determines whether the backup server should be utilized. 8 | extern bool codemii_backup; 9 | 10 | // TODO(spotlightishere): migrate into unified header 11 | extern struct repo_struct repo_list[200]; 12 | 13 | CURLU *domain_with_path(char *domain, char *path); 14 | CURLU *create_hardcoded_url(char *path); 15 | CURLU *create_repo_url(char *path); 16 | void curl_set_query(CURLU *url, char *name, char *value); 17 | void *handle_get_request(CURLU *url, CURLcode *error); 18 | 19 | // The definition for the callback function for download progress. 20 | // Return false to cancel the request. 21 | typedef bool download_callback(curl_off_t current_size, curl_off_t total_size); 22 | CURLcode handle_download_request(CURLU *url, FILE *f, 23 | download_callback *download_callback); 24 | CURLcode test_head_request(CURLU *url); -------------------------------------------------------------------------------- /source/settings.h: -------------------------------------------------------------------------------- 1 | /* Manages loading and saving preferences for the Homebrew Browser. */ 2 | #include 3 | #include 4 | #include 5 | 6 | extern bool setting_check_size; 7 | extern bool setting_sd_card; 8 | extern bool setting_hide_installed; 9 | extern bool setting_get_rating; 10 | extern bool setting_music; 11 | extern bool setting_online; 12 | extern bool setting_rumble; 13 | extern bool setting_update_icon; 14 | extern bool setting_tool_tip; 15 | extern char setting_last_boot[14]; 16 | extern bool setting_show_updated; 17 | extern bool setting_prompt_cancel; 18 | extern bool setting_power_off; 19 | extern bool setting_use_sd; 20 | extern int setting_repo; 21 | extern bool setting_repo_revert; 22 | extern int setting_sort; 23 | extern int setting_category; 24 | extern bool setting_disusb; 25 | extern bool setting_dischar; 26 | extern bool setting_wiiside; 27 | extern bool setting_update; 28 | extern bool setting_server; 29 | 30 | void update_settings(); 31 | void load_settings(); 32 | void load_mount_settings(); 33 | -------------------------------------------------------------------------------- /source/gfx-orig/blue_progress.c: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | const unsigned char blue_progress[] = { 7 | 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 8 | 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x20, 0x08, 0x06, 0x00, 0x00, 0x00, 0x35, 0xcc, 0xd9, 9 | 0x5e, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4d, 0x41, 0x00, 0x00, 0xaf, 0xc8, 0x37, 0x05, 0x8a, 10 | 0xe9, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 11 | 0x65, 0x00, 0x41, 0x64, 0x6f, 0x62, 0x65, 0x20, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x61, 12 | 0x64, 0x79, 0x71, 0xc9, 0x65, 0x3c, 0x00, 0x00, 0x00, 0x1d, 0x49, 0x44, 0x41, 0x54, 0x78, 0xda, 13 | 0x62, 0x5c, 0xf1, 0xf0, 0xff, 0x3f, 0x06, 0x18, 0x60, 0x64, 0x60, 0x60, 0x62, 0x40, 0x03, 0xa3, 14 | 0x02, 0x23, 0x59, 0x00, 0x20, 0xc0, 0x00, 0xbb, 0xfc, 0x03, 0xc7, 0x59, 0x9f, 0xed, 0xb9, 0x00, 15 | 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82 16 | }; 17 | const int blue_progress_size = sizeof(blue_progress); 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OSCHomebrewBrowser 2 | The [Open Shop Channel](https://oscwii.org) version of the Homebrew Browser. 3 | 4 | #### Planned / TODO: 5 | - [x] More meaningful errors 6 | - [x] New background graphics 7 | - [ ] Nicer dpad scrolling 8 | - [x] Truncate long descriptions to fit / Implement scrolling if plausible (Currently, descriptions longer than the box size result in visual bugs.) 9 | - [ ] Look into common DSI exceptions. 10 | - [ ] More new graphics, possibly 11 | 12 | ## Building 13 | 1. Install [devkitPro](https://devkitpro.org/wiki/Getting_Started), a toolchain for building Wii Homebrew applications. 14 | 2. Install the `wii-dev` package via `pacman`. 15 | 3. Clone and install the latest [GRRLIB via its instructions](https://github.com/grrlib/grrlib#installing-grrlib). 16 | 4. Install the `ppc-mxml` and `ppc-libvorbisidec` packages. 17 | 5. Install the latest versions of `libwiisocket`, `mbedtls`, and `libcurl` from [4TU's wii-packages](https://gitlab.com/4TU/wii-packages/-/tags). 18 | 1. Use the latest available tag, if possible. Packages are attached as release files. 19 | 2. `pacman -U ` to manually install. 20 | 6. Run `make`, and enjoy! 21 | -------------------------------------------------------------------------------- /source/gfx-orig/blank.c: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | const unsigned char blank[] = { 7 | 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 8 | 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x30, 0x08, 0x06, 0x00, 0x00, 0x00, 0xd9, 0xf4, 0x72, 9 | 0xbe, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4d, 0x41, 0x00, 0x00, 0xaf, 0xc8, 0x37, 0x05, 0x8a, 10 | 0xe9, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 11 | 0x65, 0x00, 0x41, 0x64, 0x6f, 0x62, 0x65, 0x20, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x61, 12 | 0x64, 0x79, 0x71, 0xc9, 0x65, 0x3c, 0x00, 0x00, 0x00, 0x6d, 0x49, 0x44, 0x41, 0x54, 0x78, 0xda, 13 | 0xec, 0xd2, 0x41, 0x11, 0x00, 0x00, 0x08, 0xc3, 0x30, 0xc0, 0xbf, 0xe7, 0x21, 0x83, 0x07, 0x89, 14 | 0x84, 0x5e, 0x3b, 0x49, 0xf1, 0xd7, 0x48, 0x60, 0x00, 0x0c, 0x80, 0x01, 0x30, 0x00, 0x06, 0xc0, 15 | 0x00, 0x18, 0x00, 0x03, 0x60, 0x00, 0x0c, 0x80, 0x01, 0x30, 0x00, 0x06, 0xc0, 0x00, 0x18, 0x00, 16 | 0x03, 0x60, 0x00, 0x0c, 0x80, 0x01, 0x30, 0x00, 0x06, 0xc0, 0x00, 0x18, 0x00, 0x03, 0x60, 0x00, 17 | 0x0c, 0x80, 0x01, 0x30, 0x00, 0x06, 0xc0, 0x00, 0x18, 0x00, 0x03, 0x60, 0x00, 0x0c, 0x80, 0x01, 18 | 0x30, 0x00, 0x06, 0xc0, 0x00, 0x18, 0x00, 0x03, 0x60, 0x00, 0x0c, 0x80, 0x01, 0x30, 0x00, 0x06, 19 | 0xc0, 0x00, 0x5c, 0x58, 0x01, 0x06, 0x00, 0xe4, 0x85, 0x03, 0x5d, 0xc7, 0xc0, 0xc6, 0x61, 0x00, 20 | 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82 21 | }; 22 | const int blank_size = sizeof(blank); 23 | -------------------------------------------------------------------------------- /source/gfx-orig/arrow.c: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | const unsigned char arrow[] = { 7 | 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 8 | 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x08, 0x02, 0x00, 0x00, 0x00, 0x7c, 0xc2, 0xea, 9 | 0x5b, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 10 | 0x65, 0x00, 0x41, 0x64, 0x6f, 0x62, 0x65, 0x20, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x61, 11 | 0x64, 0x79, 0x71, 0xc9, 0x65, 0x3c, 0x00, 0x00, 0x00, 0x84, 0x49, 0x44, 0x41, 0x54, 0x78, 0xda, 12 | 0x94, 0xd2, 0x61, 0x0a, 0x80, 0x20, 0x0c, 0x05, 0xe0, 0x7a, 0xf4, 0xb3, 0x2b, 0xd4, 0xc1, 0x3a, 13 | 0x60, 0x07, 0xab, 0x2b, 0xf4, 0xdf, 0x8a, 0x81, 0xc8, 0xdc, 0xf6, 0xe6, 0x10, 0x44, 0x79, 0xdf, 14 | 0x10, 0x75, 0x2e, 0xa5, 0xdc, 0xcf, 0x24, 0xb5, 0xad, 0x13, 0x2d, 0xc8, 0xb4, 0x9f, 0xff, 0xa8, 15 | 0x92, 0x83, 0xca, 0xa8, 0x81, 0x5a, 0x53, 0x83, 0x7e, 0x2b, 0x36, 0x30, 0x77, 0x03, 0x03, 0xaf, 16 | 0x93, 0x67, 0x10, 0x1c, 0xd7, 0x34, 0x88, 0xef, 0xa4, 0x37, 0xa0, 0x17, 0xaf, 0x0c, 0x07, 0xca, 17 | 0xa4, 0x40, 0x6b, 0xb2, 0x40, 0xcc, 0x18, 0xb8, 0x8e, 0x11, 0xf0, 0xa5, 0xe5, 0x2f, 0x63, 0x28, 18 | 0x9d, 0x02, 0x6d, 0x9a, 0x03, 0x95, 0x26, 0xa0, 0x4f, 0x47, 0xc0, 0x4c, 0xbb, 0xc0, 0x4b, 0xdb, 19 | 0x20, 0x48, 0x1b, 0x40, 0x5e, 0x27, 0xa8, 0x25, 0xdf, 0x5b, 0xea, 0x15, 0x60, 0x00, 0x7d, 0x47, 20 | 0x32, 0x65, 0x54, 0x51, 0xfc, 0x62, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 21 | 0x60, 0x82 22 | }; 23 | const int arrow_size = sizeof(arrow); 24 | -------------------------------------------------------------------------------- /source/unzip/ioapi.h: -------------------------------------------------------------------------------- 1 | /* ioapi.h -- IO base function header for compress/uncompress .zip 2 | files using zlib + zip or unzip API 3 | 4 | Version 1.01e, February 12th, 2005 5 | 6 | Copyright (C) 1998-2005 Gilles Vollant 7 | */ 8 | 9 | #ifndef _ZLIBIOAPI_H 10 | #define _ZLIBIOAPI_H 11 | 12 | 13 | #define ZLIB_FILEFUNC_SEEK_CUR (1) 14 | #define ZLIB_FILEFUNC_SEEK_END (2) 15 | #define ZLIB_FILEFUNC_SEEK_SET (0) 16 | 17 | #define ZLIB_FILEFUNC_MODE_READ (1) 18 | #define ZLIB_FILEFUNC_MODE_WRITE (2) 19 | #define ZLIB_FILEFUNC_MODE_READWRITEFILTER (3) 20 | 21 | #define ZLIB_FILEFUNC_MODE_EXISTING (4) 22 | #define ZLIB_FILEFUNC_MODE_CREATE (8) 23 | 24 | 25 | #ifndef ZCALLBACK 26 | 27 | #if (defined(WIN32) || defined (WINDOWS) || defined (_WINDOWS)) && defined(CALLBACK) && defined (USEWINDOWS_CALLBACK) 28 | #define ZCALLBACK CALLBACK 29 | #else 30 | #define ZCALLBACK 31 | #endif 32 | #endif 33 | 34 | #ifdef __cplusplus 35 | extern "C" { 36 | #endif 37 | 38 | typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode)); 39 | typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size)); 40 | typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size)); 41 | typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream)); 42 | typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin)); 43 | typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream)); 44 | typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream)); 45 | 46 | typedef struct zlib_filefunc_def_s 47 | { 48 | open_file_func zopen_file; 49 | read_file_func zread_file; 50 | write_file_func zwrite_file; 51 | tell_file_func ztell_file; 52 | seek_file_func zseek_file; 53 | close_file_func zclose_file; 54 | testerror_file_func zerror_file; 55 | voidpf opaque; 56 | } zlib_filefunc_def; 57 | 58 | 59 | 60 | void fill_fopen_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def)); 61 | 62 | #define ZREAD(filefunc,filestream,buf,size) ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size)) 63 | #define ZWRITE(filefunc,filestream,buf,size) ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size)) 64 | #define ZTELL(filefunc,filestream) ((*((filefunc).ztell_file))((filefunc).opaque,filestream)) 65 | #define ZSEEK(filefunc,filestream,pos,mode) ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode)) 66 | #define ZCLOSE(filefunc,filestream) ((*((filefunc).zclose_file))((filefunc).opaque,filestream)) 67 | #define ZERROR(filefunc,filestream) ((*((filefunc).zerror_file))((filefunc).opaque,filestream)) 68 | 69 | 70 | #ifdef __cplusplus 71 | } 72 | #endif 73 | 74 | #endif 75 | 76 | -------------------------------------------------------------------------------- /source/music_player.c: -------------------------------------------------------------------------------- 1 | /* Manages music for the Homebrew Browser. */ 2 | #include "common.h" 3 | #include "files.h" 4 | #include "mp3player.h" 5 | #include "oggplayer.h" 6 | #include 7 | #include 8 | 9 | static lwp_t music_thread; 10 | 11 | // Whether to stop playing MP3 music. 12 | // To stop playing OGG files, use the "StopOgg" function. 13 | bool stop_mp3_music = false; 14 | 15 | static void *run_music_thread(void *arg) { 16 | FILE *f = hbb_fopen("loop.mp3", "rb"); 17 | if (f == NULL) { 18 | return 0; 19 | } 20 | 21 | fseek(f, 0, SEEK_END); 22 | long mp3_size = ftell(f); 23 | rewind(f); 24 | 25 | // allocate memory to contain the whole file: 26 | char *buffer = (char *)malloc(sizeof(char) * mp3_size); 27 | if (buffer == NULL) { 28 | perror(" Memory error"); 29 | } 30 | 31 | // copy the file into the buffer: 32 | size_t result = fread(buffer, 1, mp3_size, f); 33 | if (result != mp3_size) { 34 | perror(" Reading error"); 35 | } 36 | 37 | fclose(f); 38 | 39 | while (1) { 40 | if (!MP3Player_IsPlaying()) { 41 | MP3Player_PlayBuffer(buffer, mp3_size + 29200, NULL); 42 | } 43 | if (exiting == true || stop_mp3_music == true) { 44 | MP3Player_Stop(); 45 | stop_mp3_music = false; 46 | break; 47 | } 48 | usleep(1000); 49 | } 50 | 51 | return 0; 52 | } 53 | 54 | s32 initialise_music() { 55 | s32 result = 56 | LWP_CreateThread(&music_thread, run_music_thread, NULL, NULL, 0, 80); 57 | return result; 58 | } 59 | 60 | void initialise_mod_music() { 61 | FILE *f = hbb_fopen("loop.mod", "rb"); 62 | 63 | if (f == NULL) { 64 | return; 65 | } 66 | 67 | fseek(f, 0, SEEK_END); 68 | long mod_size = ftell(f); 69 | rewind(f); 70 | 71 | // allocate memory to contain the whole file: 72 | char *buffer = (char *)malloc(sizeof(char) * mod_size); 73 | if (buffer == NULL) { 74 | fputs(" Memory error", stderr); 75 | } 76 | 77 | // copy the file into the buffer: 78 | size_t result = fread(buffer, 1, mod_size, f); 79 | if (result != mod_size) { 80 | fputs(" Reading error", stderr); 81 | } 82 | 83 | fclose(f); 84 | } 85 | 86 | void play_mod_music() { 87 | FILE *f; 88 | 89 | // MP3 90 | f = hbb_fopen("loop.mp3", "rb"); 91 | if (f != NULL) { 92 | fclose(f); 93 | initialise_music(); 94 | return; 95 | } 96 | 97 | // If there's no MP3, attempt OGG. 98 | f = hbb_fopen("loop.ogg", "rb"); 99 | if (f != NULL) { 100 | fseek(f, 0, SEEK_END); 101 | long ogg_size = ftell(f); 102 | rewind(f); 103 | 104 | // allocate memory to contain the whole file: 105 | char *buffer = (char *)malloc(sizeof(char) * ogg_size); 106 | if (buffer == NULL) { 107 | perror(" Memory error"); 108 | } 109 | 110 | // copy the file into the buffer: 111 | size_t result = fread(buffer, 1, ogg_size, f); 112 | if (result != ogg_size) { 113 | perror(" Reading error"); 114 | } 115 | 116 | PlayOgg(buffer, ogg_size, 0, OGG_INFINITE_TIME); 117 | fclose(f); 118 | return; 119 | } 120 | 121 | // Lastly, attempt MOD. 122 | f = hbb_fopen("loop.mod", "rb"); 123 | if (f != NULL) { 124 | fclose(f); 125 | initialise_mod_music(); 126 | } 127 | } 128 | 129 | void stop_mod_music() { 130 | stop_mp3_music = true; 131 | StopOgg(); 132 | } -------------------------------------------------------------------------------- /source/files.c: -------------------------------------------------------------------------------- 1 | /* Manager for file/directory operations in the Homebrew Browser. */ 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | 9 | #include "settings.h" 10 | 11 | // Removes a file at the device-localized path. 12 | bool remove_file(char *path) { 13 | FILE *f = fopen(path, "rb"); 14 | 15 | // File not found 16 | if (f == NULL) { 17 | return false; 18 | } 19 | fclose(f); 20 | unlink(path); 21 | 22 | // Check file was removed 23 | f = fopen(path, "rb"); 24 | if (f == NULL) { 25 | return true; 26 | } 27 | 28 | fclose(f); 29 | return false; 30 | } 31 | 32 | // Removes a directory 33 | bool remove_dir(char *path) { 34 | if (opendir(path)) { 35 | unlink(path); 36 | if (opendir(path)) { 37 | return false; 38 | } 39 | } 40 | 41 | return true; 42 | } 43 | 44 | // Delete all files in a directory 45 | bool delete_dir_files(char *path) { 46 | struct dirent *dent = NULL; 47 | struct stat st; 48 | 49 | DIR *dir = opendir(path); 50 | if (dir != NULL) { 51 | char temp_path[MAXPATHLEN]; 52 | while ((dent = readdir(dir)) != NULL) { 53 | strcpy(temp_path, path); 54 | strcat(temp_path, "/"); 55 | strcat(temp_path, dent->d_name); 56 | stat(temp_path, &st); 57 | 58 | if (!(S_ISDIR(st.st_mode))) { 59 | remove_file(temp_path); 60 | } 61 | } 62 | } 63 | closedir(dir); 64 | 65 | return true; 66 | } 67 | 68 | // Creates a directory 69 | bool create_dir(char *path) { 70 | if (!opendir(path)) { 71 | mkdir(path, 0777); 72 | if (!opendir(path)) { 73 | return false; 74 | } 75 | } 76 | 77 | return true; 78 | } 79 | 80 | // Creates parent directories for the given path. 81 | bool create_parent_dirs(char *path) { 82 | char *temp_path = (char *)malloc(strlen(path) + 1); 83 | char *seperator = strchr(path, '/'); 84 | 85 | while (seperator != NULL) { 86 | // Separate the current segment from the full path. 87 | int path_len = seperator - path; 88 | memcpy(temp_path, path, path_len); 89 | temp_path[path_len] = '\0'; 90 | 91 | // Create! 92 | bool result = create_dir(temp_path); 93 | if (result == false) { 94 | free(temp_path); 95 | return false; 96 | } 97 | 98 | // Find the next separator. 99 | seperator = strchr(seperator + 1, '/'); 100 | } 101 | 102 | free(temp_path); 103 | return true; 104 | } 105 | 106 | // Returns the given path with the device name appended. 107 | char *device_path(char *path) { 108 | // "usb:/" is 5 characters at most, plus one for a null terminator. 109 | int length = 5 + strlen(path) + 1; 110 | char *string = (char *)malloc(length); 111 | 112 | if (setting_use_sd) { 113 | strlcpy(string, "sd:/", length); 114 | } else { 115 | strlcpy(string, "usb:/", length); 116 | } 117 | strlcat(string, path, length); 118 | 119 | return string; 120 | } 121 | 122 | // Synthesizes a path to a Homebrew application's 123 | // installation path based on the default device. 124 | // e.g. app_path("testing", "hello.txt") becomes 125 | // sd:/apps/testing/hello.txt 126 | char *app_path(char *app_name, char *app_file) { 127 | // "apps/" (5) + len(app_name) + "/" (1) + len(app_file) + null (1) 128 | size_t length = 7 + strlen(app_name) + strlen(app_file); 129 | 130 | char *buf = (char *)malloc(length); 131 | snprintf(buf, length, "apps/%s/%s", app_name, app_file); 132 | 133 | // Create a device-relative path. 134 | char *path = device_path(buf); 135 | free(buf); 136 | 137 | return path; 138 | } 139 | 140 | // fopens a file based on the default device for the Homebrew Browser. 141 | FILE *hbb_fopen(char *filename, const char *mode) { 142 | char *path = app_path("homebrew_browser", filename); 143 | 144 | FILE *f = fopen(path, mode); 145 | free(path); 146 | return f; 147 | } -------------------------------------------------------------------------------- /source/gfx-orig/blue_dark_small2.c: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | const unsigned char blue_dark_small2[] = { 7 | 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 8 | 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xcd, 0xa9, 0xd0, 9 | 0x07, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4d, 0x41, 0x00, 0x00, 0xaf, 0xc8, 0x37, 0x05, 0x8a, 10 | 0xe9, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 11 | 0x65, 0x00, 0x41, 0x64, 0x6f, 0x62, 0x65, 0x20, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x61, 12 | 0x64, 0x79, 0x71, 0xc9, 0x65, 0x3c, 0x00, 0x00, 0x01, 0xf6, 0x49, 0x44, 0x41, 0x54, 0x78, 0xda, 13 | 0xec, 0x5c, 0x0b, 0x6e, 0xc3, 0x20, 0x0c, 0xc5, 0xb9, 0xd0, 0xee, 0x7f, 0x85, 0xdd, 0x65, 0x67, 14 | 0xf0, 0x34, 0xf5, 0xb3, 0x62, 0xe2, 0x42, 0x2a, 0x30, 0x36, 0x3c, 0x4b, 0x95, 0x9a, 0x86, 0x10, 15 | 0x62, 0xfb, 0xf1, 0xec, 0xa7, 0xa8, 0xf4, 0xfd, 0xc3, 0x5f, 0x29, 0xa5, 0x23, 0xdd, 0x8c, 0x5e, 16 | 0x3e, 0x89, 0xf3, 0x63, 0x92, 0xe3, 0x98, 0x6f, 0xe3, 0xe4, 0x75, 0xf7, 0x71, 0xd4, 0x38, 0xe7, 17 | 0xff, 0x39, 0x6e, 0x1f, 0xfb, 0xb8, 0x07, 0x97, 0xf7, 0xc8, 0xc7, 0x5d, 0x9b, 0xb3, 0x76, 0x9e, 18 | 0x58, 0x1e, 0xb3, 0xee, 0x9f, 0xe7, 0x38, 0xaa, 0xcc, 0xc9, 0xea, 0x3d, 0x8a, 0xb1, 0x2f, 0xe7, 19 | 0x55, 0x3f, 0x33, 0x17, 0x6b, 0x50, 0xe3, 0x21, 0xe6, 0x2c, 0xfc, 0x71, 0x12, 0xeb, 0x83, 0x2b, 20 | 0x73, 0x9d, 0xcc, 0x57, 0xc6, 0x28, 0xf7, 0x1b, 0x71, 0xfb, 0xfa, 0x38, 0x9d, 0x98, 0xfc, 0x91, 21 | 0x39, 0x5b, 0x3f, 0x17, 0xd7, 0x52, 0xf1, 0xad, 0x98, 0xf7, 0xfe, 0xcc, 0x2c, 0x72, 0x23, 0xb5, 22 | 0xae, 0x41, 0xd8, 0x9f, 0x0f, 0x59, 0xf8, 0x56, 0xbb, 0x8c, 0xf2, 0x47, 0xc8, 0x9e, 0xe3, 0xed, 23 | 0x73, 0x56, 0x03, 0x2d, 0x8e, 0x57, 0x37, 0xcd, 0x07, 0x49, 0x49, 0xf6, 0x91, 0xeb, 0x80, 0x3f, 24 | 0x60, 0x97, 0xed, 0xe8, 0x18, 0xe4, 0xb3, 0xa0, 0x5b, 0x26, 0x37, 0x4d, 0x4c, 0xf6, 0x19, 0x1b, 25 | 0xa1, 0x37, 0x20, 0x01, 0xfc, 0x41, 0x01, 0xdd, 0x0b, 0xfc, 0x33, 0x03, 0xec, 0x15, 0xfc, 0x3b, 26 | 0x00, 0x3f, 0x01, 0xf8, 0x63, 0x01, 0x4d, 0x0e, 0x82, 0xdb, 0xba, 0xc3, 0xaf, 0x0c, 0xfa, 0x5a, 27 | 0x72, 0xef, 0xde, 0x02, 0x01, 0xe4, 0x9d, 0x19, 0x9a, 0x9c, 0x04, 0x18, 0x3b, 0x7c, 0xfb, 0x66, 28 | 0xd8, 0xdb, 0x1f, 0x14, 0x28, 0x57, 0x00, 0xe8, 0x05, 0x4b, 0x3c, 0xf4, 0x75, 0xd7, 0x5b, 0x20, 29 | 0x32, 0x5e, 0x0f, 0x6c, 0x00, 0xa0, 0x51, 0xde, 0x41, 0xe1, 0xfe, 0xc4, 0x1f, 0xb0, 0xe0, 0x0c, 30 | 0x6d, 0x0d, 0x7c, 0x0a, 0x00, 0xfe, 0x19, 0x2c, 0xe7, 0x09, 0xf4, 0xa8, 0x84, 0x36, 0x29, 0xb9, 31 | 0x2d, 0x15, 0xee, 0x68, 0xc0, 0xdf, 0x39, 0xd1, 0x01, 0xfc, 0x60, 0x80, 0x1e, 0xb5, 0xc3, 0x5b, 32 | 0x82, 0xdf, 0xbb, 0xc2, 0xbd, 0x5b, 0xbf, 0xaf, 0xbe, 0x21, 0x06, 0xfb, 0x0c, 0xd0, 0x50, 0xb8, 33 | 0xfd, 0xb3, 0x9c, 0x56, 0x09, 0x59, 0x57, 0x41, 0x60, 0xd8, 0x85, 0x18, 0x1a, 0x0a, 0xb7, 0x4f, 34 | 0xf0, 0x5b, 0xb7, 0x40, 0x00, 0xfe, 0x44, 0x40, 0xa3, 0xbc, 0x83, 0xc2, 0x3d, 0xb3, 0x05, 0x82, 35 | 0x19, 0x33, 0xf4, 0xac, 0x77, 0x96, 0x23, 0x0b, 0x5d, 0x3b, 0x30, 0x1b, 0xc0, 0xbf, 0x51, 0xc9, 36 | 0x0d, 0x85, 0x1b, 0x0a, 0x37, 0xf4, 0x8f, 0x05, 0x00, 0x3d, 0x62, 0x87, 0xb7, 0x66, 0x37, 0x28, 37 | 0xdc, 0xfe, 0x36, 0x43, 0x28, 0xdc, 0x9d, 0x4b, 0x6e, 0x0f, 0xc1, 0x7d, 0x57, 0xe6, 0x43, 0xe1, 38 | 0x1e, 0x5f, 0x09, 0xc1, 0x36, 0x63, 0x68, 0x28, 0xdc, 0x31, 0x18, 0x6f, 0x24, 0xf0, 0xe9, 0xc2, 39 | 0x5a, 0x60, 0x83, 0x00, 0x8d, 0x64, 0xf7, 0x21, 0xea, 0x44, 0x51, 0xb8, 0x61, 0x81, 0x19, 0x7a, 40 | 0x16, 0xcb, 0x79, 0xfc, 0x37, 0x0e, 0x8d, 0xd9, 0x2c, 0x93, 0xdd, 0xcb, 0x0b, 0x3e, 0x00, 0xff, 41 | 0xe2, 0x25, 0xf7, 0x0c, 0x51, 0x87, 0x02, 0x03, 0x7f, 0xe7, 0x7e, 0x1f, 0x2d, 0x50, 0x90, 0x1e, 42 | 0xda, 0xfb, 0x0e, 0x4f, 0x81, 0x92, 0x1e, 0x2d, 0x10, 0x14, 0xee, 0x61, 0x25, 0xb7, 0xe7, 0x64, 43 | 0xef, 0xcd, 0xd4, 0x14, 0x24, 0xd9, 0xad, 0xc1, 0x0f, 0xf6, 0x0c, 0x62, 0xbf, 0x02, 0x0c, 0x00, 44 | 0x68, 0x52, 0x3b, 0x8c, 0x03, 0x19, 0xeb, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 45 | 0xae, 0x42, 0x60, 0x82 46 | }; 47 | const int blue_dark_small2_size = sizeof(blue_dark_small2); 48 | -------------------------------------------------------------------------------- /source/storage.c: -------------------------------------------------------------------------------- 1 | /* Manager for storage devices in the Homebrew Browser. */ 2 | #include 3 | #include 4 | #include 5 | 6 | #include 7 | #include 8 | 9 | #include 10 | #include 11 | 12 | #include "common.h" 13 | #include "settings.h" 14 | #include "storage.h" 15 | 16 | //////////////////////////////////////////////////// 17 | // FAT filesystem functions 18 | //////////////////////////////////////////////////// 19 | 20 | // Used to store things such as "sd:/" or "usb:/". 21 | char rootdir[10]; 22 | 23 | bool sd_mounted = false; 24 | bool usb_mounted = false; 25 | 26 | // Determine whether we can open a folder on 27 | // the given FAT media. 28 | static bool can_open_root_fs() { 29 | DIR *root; 30 | root = opendir(rootdir); 31 | if (root) { 32 | closedir(root); 33 | return true; 34 | } 35 | return false; 36 | } 37 | 38 | // Ensure that we can read and write on the given FAT media. 39 | bool test_fat() { 40 | // Try to open root filesystem - if we don't check here, mkdir crashes later 41 | if (!can_open_root_fs()) { 42 | printf("Unable to open root filesystem of %s\n", rootdir); 43 | return false; 44 | } 45 | 46 | // Change dir 47 | if (chdir(rootdir)) { 48 | printf("Could not change to root directory to %s\n", rootdir); 49 | return false; 50 | } 51 | 52 | // Create directories 53 | char dir_apps[50]; 54 | char dir_hbb[150]; 55 | char dir_hbbtemp[150]; 56 | 57 | strcpy(dir_apps, rootdir); 58 | strcat(dir_apps, "apps"); 59 | strcpy(dir_hbb, rootdir); 60 | strcat(dir_hbb, "apps/homebrew_browser"); 61 | strcpy(dir_hbbtemp, rootdir); 62 | strcat(dir_hbbtemp, "apps/homebrew_browser/temp"); 63 | 64 | if (!opendir(dir_apps)) { 65 | mkdir(dir_apps, 0777); 66 | if (!opendir(dir_apps)) { 67 | printf("Could not create %s directory.\n", dir_apps); 68 | } 69 | } 70 | 71 | 72 | if (!opendir(dir_hbb)) { 73 | mkdir(dir_hbb, 0777); 74 | if (!opendir(dir_hbb)) { 75 | printf("Could not create %s directory.\n", dir_hbb); 76 | } 77 | } 78 | 79 | if (!opendir(dir_hbbtemp)) { 80 | mkdir(dir_hbbtemp, 0777); 81 | if (!opendir(dir_hbbtemp)) { 82 | printf("Could not create %s directory.\n", dir_hbbtemp); 83 | } 84 | } 85 | 86 | return true; 87 | } 88 | 89 | //////////////////////////////////////////////////// 90 | // Device initialisation 91 | //////////////////////////////////////////////////// 92 | 93 | const DISC_INTERFACE* sd = &__io_wiisd; 94 | const DISC_INTERFACE* usb = &__io_usbstorage; 95 | 96 | bool initialise_device(int method) { 97 | bool mounted = false; 98 | char name[10]; 99 | const DISC_INTERFACE* disc = NULL; 100 | 101 | switch(method) 102 | { 103 | case METHOD_SD: 104 | sprintf(name, "sd"); 105 | disc = sd; 106 | break; 107 | case METHOD_USB: 108 | sprintf(name, "usb"); 109 | disc = usb; 110 | break; 111 | } 112 | 113 | if (disc->startup() && fatMountSimple(name, disc)) { 114 | mounted = true; 115 | } else { 116 | printf("Unable to mount %s...\n", name); 117 | } 118 | 119 | return mounted; 120 | } 121 | 122 | void initialise_fat() { 123 | bool fat_init = false; 124 | 125 | // At least one FAT initialisation must be completed. 126 | printf("Attempting to mount SD card... "); 127 | if (initialise_device(METHOD_SD)) { 128 | strcpy(rootdir, "sd:/"); 129 | if (test_fat() == true) { 130 | fat_init = true; 131 | sd_mounted = true; 132 | printf("SD card mounted.\n"); 133 | load_mount_settings(); 134 | } else { 135 | fatUnmount("sd:"); 136 | sleep(1); 137 | } 138 | } 139 | 140 | if (setting_disusb == false) { 141 | printf("Attempting to mount USB device... "); 142 | if (initialise_device(METHOD_USB)) { 143 | strcpy(rootdir, "usb:/"); 144 | if (test_fat() == true) { 145 | fat_init = true; 146 | usb_mounted = true; 147 | printf("USB device mounted.\n"); 148 | } 149 | else { 150 | fatUnmount("usb:"); 151 | sleep(1); 152 | } 153 | } 154 | } 155 | 156 | if (!fat_init) { 157 | die("Could not mount SD card or USB device..."); 158 | } 159 | } 160 | -------------------------------------------------------------------------------- /source/gfx-orig/sort_arrow_up.c: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | const unsigned char sort_arrow_up[] = { 7 | 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 8 | 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff, 9 | 0x61, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4d, 0x41, 0x00, 0x00, 0xaf, 0xc8, 0x37, 0x05, 0x8a, 10 | 0xe9, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 11 | 0x65, 0x00, 0x41, 0x64, 0x6f, 0x62, 0x65, 0x20, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x61, 12 | 0x64, 0x79, 0x71, 0xc9, 0x65, 0x3c, 0x00, 0x00, 0x02, 0x18, 0x49, 0x44, 0x41, 0x54, 0x78, 0xda, 13 | 0x9c, 0x93, 0xcb, 0x6b, 0x13, 0x51, 0x14, 0xc6, 0x7f, 0xd3, 0x4c, 0xa6, 0x79, 0xa7, 0x36, 0x7d, 14 | 0x25, 0x6a, 0x29, 0x45, 0x2a, 0x2e, 0x22, 0x5d, 0x18, 0x51, 0x28, 0xc4, 0x8d, 0xf8, 0x0f, 0xb8, 15 | 0xa9, 0x3b, 0x37, 0x15, 0x51, 0x5c, 0xa8, 0xdb, 0x6e, 0x74, 0x2f, 0xa2, 0xe2, 0xca, 0xa5, 0x82, 16 | 0xe8, 0xc6, 0x8d, 0x08, 0x56, 0xc1, 0xf8, 0x40, 0x17, 0x35, 0x5d, 0x88, 0x62, 0xb4, 0xad, 0x0f, 17 | 0x30, 0x29, 0x26, 0x1a, 0xe3, 0x4c, 0x9a, 0x64, 0x92, 0x4c, 0xbc, 0x73, 0xf3, 0x30, 0xb1, 0x82, 18 | 0xd8, 0x0f, 0xbe, 0xb9, 0xe7, 0xde, 0x39, 0xdf, 0x37, 0xe7, 0x1c, 0xe6, 0x2a, 0x8d, 0x46, 0x83, 19 | 0x6e, 0x24, 0x32, 0x38, 0xc4, 0x72, 0x5c, 0xf0, 0x88, 0xe0, 0x0e, 0xc1, 0x8a, 0xe0, 0x92, 0xe0, 20 | 0xe5, 0x78, 0x98, 0x05, 0xfe, 0x80, 0xd2, 0x6d, 0xf0, 0x28, 0xcd, 0x4e, 0x45, 0xe1, 0xe6, 0x88, 21 | 0x9b, 0xe9, 0xa0, 0x06, 0x5a, 0x1f, 0x98, 0x16, 0x14, 0x4c, 0x48, 0x17, 0xc1, 0xa8, 0x72, 0xa5, 22 | 0x6a, 0x71, 0xf6, 0xf0, 0xa4, 0x34, 0x95, 0xe8, 0x6b, 0x07, 0xaf, 0xf3, 0x0c, 0x09, 0x71, 0x62, 23 | 0xdc, 0xc7, 0xb4, 0x57, 0x85, 0x9a, 0x10, 0xae, 0xd7, 0x84, 0x81, 0xa0, 0xbd, 0x9f, 0x0c, 0x80, 24 | 0x5f, 0xe3, 0xa4, 0x5e, 0xe3, 0x6a, 0x77, 0x05, 0x1d, 0x83, 0xe5, 0x9f, 0x5c, 0xf0, 0x3b, 0x19, 25 | 0xb5, 0xbf, 0xf6, 0xbd, 0xd2, 0xe4, 0xed, 0x1b, 0x2f, 0xb9, 0x76, 0x29, 0x21, 0x63, 0xfb, 0x7c, 26 | 0x40, 0x54, 0xa5, 0xc0, 0xd1, 0xf3, 0x49, 0x66, 0xda, 0x3a, 0xd5, 0x7e, 0x9c, 0x7a, 0x86, 0x6f, 27 | 0x66, 0x8c, 0xd9, 0x6c, 0xf9, 0xb7, 0xb3, 0x65, 0x59, 0x3c, 0x79, 0xf0, 0x16, 0xab, 0x6e, 0x11, 28 | 0xfb, 0x66, 0xe2, 0xf2, 0x68, 0xf2, 0xdc, 0xed, 0x40, 0xc9, 0x96, 0x98, 0x17, 0xe1, 0xa1, 0x4e, 29 | 0x05, 0x42, 0xb8, 0x3f, 0x6f, 0xa2, 0xda, 0x7d, 0xb6, 0x79, 0xef, 0x56, 0x12, 0xa7, 0xcf, 0x45, 30 | 0x70, 0x24, 0xc0, 0xdd, 0xeb, 0x2f, 0x3a, 0xe7, 0x3f, 0x4c, 0x99, 0x1f, 0x9f, 0x7d, 0xd8, 0xd4, 31 | 0xaa, 0x2d, 0x83, 0x48, 0xaa, 0x20, 0x7a, 0x74, 0x36, 0xbf, 0x5e, 0x2b, 0x57, 0x49, 0xaf, 0xac, 32 | 0x71, 0x62, 0x6e, 0x2f, 0xa1, 0x2d, 0x6e, 0xce, 0x5d, 0x7c, 0x4e, 0xea, 0x4b, 0x91, 0xfe, 0xa0, 33 | 0x17, 0xbd, 0x2a, 0xf3, 0xfb, 0x45, 0x5a, 0xc8, 0x96, 0x36, 0x0d, 0x4a, 0x68, 0x8b, 0x5f, 0x21, 34 | 0xe2, 0x15, 0x8e, 0xa2, 0x49, 0xf3, 0x71, 0x12, 0xbf, 0xd7, 0xc9, 0x81, 0x7d, 0xdb, 0x11, 0x83, 35 | 0x65, 0xeb, 0x98, 0x9f, 0x95, 0xfb, 0x8b, 0x38, 0x0e, 0xc6, 0x65, 0x15, 0xf6, 0x3c, 0x04, 0x9c, 36 | 0x9d, 0x16, 0x72, 0xa2, 0xf7, 0x55, 0x1d, 0x92, 0x39, 0x78, 0x97, 0x29, 0xe1, 0x30, 0x74, 0x4e, 37 | 0xcf, 0xc5, 0xa4, 0xd8, 0xc6, 0x99, 0x63, 0x7b, 0x50, 0x6b, 0x55, 0xde, 0x7f, 0xc8, 0xcb, 0x3c, 38 | 0x3b, 0x3f, 0x57, 0xee, 0x1a, 0x62, 0x7b, 0x78, 0xb6, 0x60, 0x6a, 0x2d, 0xc5, 0xb6, 0x89, 0x41, 39 | 0xa2, 0x53, 0x83, 0x9d, 0x81, 0x8e, 0x87, 0x7d, 0xec, 0x8e, 0x86, 0xa9, 0x7c, 0x5a, 0xe6, 0x55, 40 | 0x24, 0xd6, 0xf3, 0x23, 0x49, 0x03, 0xab, 0x58, 0x92, 0x9b, 0x51, 0x6b, 0x9d, 0x21, 0xad, 0x4e, 41 | 0x68, 0xd8, 0xcf, 0xc2, 0x52, 0xb6, 0x27, 0xd1, 0x13, 0x74, 0x11, 0x70, 0x97, 0x99, 0xd0, 0x33, 42 | 0xac, 0xf6, 0x0d, 0xb4, 0x4e, 0xdd, 0x4d, 0x03, 0xd5, 0x30, 0xe4, 0x36, 0xea, 0x2b, 0x60, 0x79, 43 | 0x3c, 0xbc, 0xc9, 0xd5, 0x05, 0x73, 0x6c, 0x80, 0x78, 0xb7, 0xab, 0x6e, 0xf0, 0x59, 0x57, 0xff, 44 | 0x6e, 0xf0, 0xd4, 0xb0, 0xaf, 0x81, 0x83, 0x7f, 0x41, 0xc5, 0x68, 0x45, 0xc3, 0xbd, 0x06, 0x9b, 45 | 0x41, 0xdb, 0xe0, 0xa3, 0x58, 0xee, 0xfc, 0xa7, 0xb6, 0xbc, 0xe1, 0x36, 0x6e, 0x06, 0xbf, 0x04, 46 | 0x18, 0x00, 0x8e, 0x51, 0xcb, 0xb4, 0xcb, 0xb2, 0x12, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 47 | 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82 48 | }; 49 | const int sort_arrow_up_size = sizeof(sort_arrow_up); 50 | -------------------------------------------------------------------------------- /source/gfx-orig/control_wiimote.c: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | const unsigned char control_wiimote[] = { 7 | 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 8 | 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x24, 0x08, 0x06, 0x00, 0x00, 0x00, 0xbd, 0x8a, 0xdb, 9 | 0xbc, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4d, 0x41, 0x00, 0x00, 0xaf, 0xc8, 0x37, 0x05, 0x8a, 10 | 0xe9, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 11 | 0x65, 0x00, 0x41, 0x64, 0x6f, 0x62, 0x65, 0x20, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x61, 12 | 0x64, 0x79, 0x71, 0xc9, 0x65, 0x3c, 0x00, 0x00, 0x02, 0x3b, 0x49, 0x44, 0x41, 0x54, 0x78, 0xda, 13 | 0xb4, 0x54, 0x4d, 0xcb, 0x69, 0x51, 0x14, 0x5e, 0x38, 0xbe, 0x32, 0x21, 0x14, 0x06, 0xc6, 0x0c, 14 | 0xa4, 0x64, 0x68, 0x24, 0x06, 0xca, 0xc0, 0x44, 0x14, 0x29, 0x1f, 0x45, 0x19, 0x18, 0x98, 0xf9, 15 | 0x05, 0x0a, 0x19, 0x2b, 0x0a, 0xe5, 0x87, 0x98, 0x30, 0x61, 0x62, 0xe2, 0xcd, 0x50, 0x8a, 0xbc, 16 | 0x98, 0x90, 0x7c, 0xbb, 0x67, 0xed, 0xda, 0x27, 0x87, 0xe3, 0x75, 0xef, 0xed, 0xde, 0x55, 0xa7, 17 | 0xbd, 0xcf, 0xde, 0xeb, 0xd9, 0x6b, 0xad, 0x67, 0x7d, 0x88, 0x16, 0x8b, 0xc5, 0x57, 0xa3, 0xd1, 18 | 0xd0, 0xcf, 0x66, 0xb3, 0x8b, 0x58, 0x2c, 0x06, 0xa5, 0x52, 0x09, 0x28, 0xf7, 0xfb, 0x9d, 0x5b, 19 | 0xd9, 0x33, 0x26, 0x12, 0x89, 0x7c, 0x5b, 0xad, 0x56, 0x0b, 0x94, 0x4a, 0xa5, 0x0d, 0x9e, 0x07, 20 | 0x83, 0xc1, 0x7b, 0x34, 0x1a, 0x45, 0x2d, 0xc1, 0x2f, 0x1e, 0x8f, 0x6f, 0x10, 0x2c, 0xde, 0x6e, 21 | 0xb7, 0xe4, 0x29, 0x97, 0xcb, 0x05, 0x6e, 0xb7, 0x1b, 0xde, 0xc9, 0x6e, 0xb7, 0x23, 0x7a, 0x0c, 22 | 0xba, 0x81, 0x92, 0xcb, 0xe5, 0xc8, 0x2a, 0x95, 0x4a, 0xc1, 0x68, 0x34, 0xc2, 0x6a, 0xb5, 0x82, 23 | 0xfd, 0x7e, 0xcf, 0x01, 0x44, 0x22, 0x11, 0x59, 0xc5, 0xcf, 0x2f, 0x69, 0x34, 0x1a, 0xe8, 0x74, 24 | 0x3a, 0xe0, 0x74, 0x3a, 0x05, 0x2d, 0xf1, 0x00, 0x85, 0x42, 0x01, 0xda, 0xed, 0x36, 0x71, 0xaf, 25 | 0x52, 0xa9, 0x90, 0x4f, 0xa5, 0x52, 0xbd, 0x07, 0xb0, 0x2c, 0x80, 0xc5, 0x62, 0x21, 0x7b, 0x93, 26 | 0xc9, 0x04, 0x76, 0xbb, 0x1d, 0x24, 0x12, 0xc9, 0x7b, 0x00, 0xc6, 0x91, 0x4e, 0xa7, 0xc9, 0xbe, 27 | 0x5a, 0xad, 0x42, 0x38, 0x1c, 0xc6, 0x60, 0x79, 0x00, 0x86, 0xf2, 0x8d, 0xb2, 0xd9, 0x6c, 0xa0, 28 | 0xdb, 0xed, 0x82, 0xc7, 0xe3, 0x81, 0xd1, 0x68, 0x44, 0x02, 0x7f, 0x16, 0xe6, 0xf9, 0xe0, 0x72, 29 | 0xb9, 0xc0, 0x60, 0x30, 0x80, 0xc3, 0xe1, 0x20, 0x1c, 0x34, 0xa5, 0x8b, 0x52, 0x97, 0xcf, 0xe7, 30 | 0xa1, 0xdf, 0xef, 0x93, 0x80, 0x65, 0x32, 0xd9, 0xcf, 0x2c, 0x31, 0x0c, 0x03, 0x99, 0x4c, 0x86, 31 | 0x04, 0x9f, 0xcd, 0x66, 0x41, 0xa7, 0xd3, 0xfd, 0xec, 0xd2, 0xf9, 0x7c, 0x86, 0x62, 0xb1, 0x08, 32 | 0x7e, 0xbf, 0x1f, 0x86, 0xc3, 0x21, 0x2c, 0x97, 0xcb, 0xcf, 0x31, 0xd4, 0x6a, 0x35, 0xa8, 0xd7, 33 | 0xeb, 0x70, 0xbd, 0x5e, 0x3f, 0x27, 0x8e, 0xca, 0x3b, 0xe5, 0xb7, 0x00, 0x21, 0xe1, 0x6a, 0x89, 34 | 0xe6, 0x21, 0x10, 0x08, 0x80, 0xcd, 0x66, 0x03, 0x2c, 0xc6, 0x58, 0x2c, 0x06, 0x6a, 0xb5, 0x9a, 35 | 0x14, 0x21, 0xdb, 0x07, 0xe4, 0xfe, 0x76, 0xbb, 0xf1, 0x01, 0xa1, 0x50, 0x08, 0x1c, 0x0e, 0x07, 36 | 0xa1, 0x32, 0x95, 0x4a, 0x81, 0x5e, 0xaf, 0x07, 0xb3, 0xd9, 0x0c, 0x89, 0x44, 0x82, 0x07, 0x60, 37 | 0xa8, 0x29, 0x7c, 0x15, 0x0f, 0xd1, 0x7f, 0xcc, 0x34, 0x32, 0x86, 0x77, 0x3e, 0x9f, 0x8f, 0xdc, 38 | 0xd3, 0x9a, 0xe2, 0x00, 0xa8, 0x40, 0xe5, 0x74, 0x3a, 0x71, 0xed, 0x49, 0xf7, 0x7f, 0x1c, 0xf4, 39 | 0x5f, 0x03, 0xb8, 0xc4, 0x61, 0xa3, 0x78, 0xbd, 0x5e, 0xd0, 0x6a, 0xb5, 0x64, 0x72, 0x60, 0x2c, 40 | 0x98, 0xc0, 0x47, 0x57, 0x79, 0x00, 0x83, 0xc1, 0x00, 0xe5, 0x72, 0x99, 0xac, 0x08, 0x9e, 0xcf, 41 | 0xe7, 0xd0, 0x6a, 0xb5, 0x5e, 0x00, 0x9c, 0x4b, 0xa8, 0x80, 0x4c, 0x61, 0x9b, 0xa2, 0x1c, 0x8f, 42 | 0x47, 0x78, 0xec, 0x95, 0x17, 0x0b, 0x38, 0x21, 0x7a, 0xbd, 0x1e, 0x77, 0x21, 0xa4, 0xcc, 0x4b, 43 | 0x1c, 0x15, 0x85, 0x42, 0xf1, 0x6f, 0x59, 0xe2, 0x75, 0xdc, 0x7f, 0xc9, 0xc3, 0x0b, 0x00, 0x47, 44 | 0x25, 0x0a, 0x56, 0xab, 0x90, 0xf5, 0x97, 0x8e, 0x9b, 0x4e, 0xa7, 0xd0, 0x6c, 0x36, 0x49, 0x7b, 45 | 0xe2, 0x04, 0xf9, 0x08, 0x18, 0x8f, 0xc7, 0x90, 0x4c, 0x26, 0xb9, 0x72, 0xfe, 0x48, 0xeb, 0x63, 46 | 0xed, 0x0b, 0x02, 0x58, 0x9f, 0x7f, 0x8b, 0x26, 0xaa, 0xc7, 0xb0, 0x9d, 0xb6, 0x9c, 0x4c, 0x26, 47 | 0xf7, 0xf5, 0x7a, 0x7d, 0x79, 0x1e, 0xbc, 0xd4, 0x9a, 0x5c, 0x2e, 0x67, 0xd8, 0x79, 0xf5, 0x8d, 48 | 0xff, 0xbf, 0x04, 0x18, 0x00, 0x25, 0x1f, 0xf7, 0xec, 0xa7, 0x39, 0xc9, 0x1e, 0x00, 0x00, 0x00, 49 | 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82 50 | }; 51 | const int control_wiimote_size = sizeof(control_wiimote); 52 | -------------------------------------------------------------------------------- /source/gfx-orig/blue_dark_small.c: -------------------------------------------------------------------------------- 1 | /* 2 | This file was autogenerated by raw2c. 3 | Visit http://www.devkitpro.org 4 | */ 5 | 6 | const unsigned char blue_dark_small[] = { 7 | 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 8 | 0x00, 0x00, 0x01, 0x48, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0x98, 0xed, 0x64, 9 | 0x70, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4d, 0x41, 0x00, 0x00, 0xaf, 0xc8, 0x37, 0x05, 0x8a, 10 | 0xe9, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 11 | 0x65, 0x00, 0x41, 0x64, 0x6f, 0x62, 0x65, 0x20, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x61, 12 | 0x64, 0x79, 0x71, 0xc9, 0x65, 0x3c, 0x00, 0x00, 0x02, 0x46, 0x49, 0x44, 0x41, 0x54, 0x78, 0xda, 13 | 0xec, 0x9c, 0x01, 0x6e, 0xc3, 0x20, 0x0c, 0x45, 0xed, 0x1e, 0x68, 0xf7, 0x3f, 0xc3, 0xee, 0xb2, 14 | 0x33, 0x78, 0xab, 0xda, 0x75, 0x05, 0x02, 0xf1, 0xa4, 0x40, 0x4c, 0x78, 0x5f, 0x8a, 0xb4, 0x34, 15 | 0x84, 0x10, 0x13, 0xbf, 0xd8, 0xb8, 0xab, 0x7e, 0x7e, 0xd9, 0x87, 0x88, 0xe8, 0xcf, 0x76, 0x93, 16 | 0x87, 0xf4, 0x6d, 0x13, 0x4b, 0xf7, 0x8b, 0x76, 0x66, 0x8f, 0x76, 0xf9, 0x79, 0xcf, 0x76, 0xea, 17 | 0xec, 0xf3, 0xef, 0x98, 0xf9, 0xdb, 0xfe, 0x5e, 0xc3, 0xca, 0x6b, 0xa4, 0xed, 0xfe, 0xd7, 0xe7, 18 | 0xde, 0x71, 0xb5, 0x7c, 0xdf, 0xea, 0xf6, 0x79, 0xb5, 0xd3, 0x9d, 0x3e, 0xad, 0x7a, 0x8d, 0xa2, 19 | 0xed, 0xdb, 0xf1, 0xaa, 0x9d, 0xcd, 0x8a, 0x31, 0x54, 0xe7, 0x23, 0xeb, 0xb3, 0xb0, 0xc7, 0xc6, 20 | 0x5c, 0xdf, 0x6c, 0xa7, 0xaf, 0x8d, 0xfe, 0xca, 0x39, 0x4a, 0xed, 0xa6, 0xe6, 0x1f, 0x9f, 0xc9, 21 | 0x86, 0xf2, 0x0f, 0xcd, 0x92, 0xf1, 0x5b, 0x71, 0xae, 0x16, 0x7f, 0x15, 0xfd, 0x3e, 0xef, 0xd9, 22 | 0xb2, 0x67, 0x43, 0xbc, 0x63, 0xc8, 0x74, 0xb7, 0xa1, 0x65, 0xb6, 0xad, 0x9d, 0xa6, 0xe9, 0x2d, 23 | 0x24, 0xf7, 0xd1, 0xbc, 0x4f, 0xcb, 0xef, 0x2e, 0x1d, 0xff, 0x9e, 0xee, 0xf3, 0x62, 0x59, 0x7f, 24 | 0x5a, 0x19, 0xeb, 0xd6, 0x18, 0xc5, 0x39, 0x37, 0xd5, 0x79, 0x7c, 0x79, 0x8c, 0xa4, 0xe3, 0x68, 25 | 0xcc, 0xab, 0x58, 0xc3, 0x3e, 0xae, 0xe3, 0xb6, 0x7d, 0xcd, 0x5b, 0xe3, 0x01, 0xae, 0xed, 0x5f, 26 | 0x5d, 0x35, 0x1b, 0x48, 0x05, 0x1e, 0x3d, 0xc7, 0x81, 0x3d, 0x10, 0x3a, 0x51, 0xb7, 0x83, 0x9d, 27 | 0x66, 0xcb, 0x89, 0x46, 0xc2, 0x62, 0xb4, 0xa3, 0x36, 0xa3, 0xbc, 0x01, 0x2f, 0x96, 0x68, 0x60, 28 | 0x02, 0xa6, 0x08, 0x40, 0x1e, 0x08, 0xd3, 0x33, 0x1d, 0x26, 0x2a, 0x4c, 0x57, 0x00, 0xa9, 0x00, 29 | 0x52, 0x34, 0x13, 0x20, 0x35, 0x80, 0xb3, 0x78, 0x23, 0x90, 0x2b, 0x43, 0x74, 0x0f, 0x16, 0xab, 30 | 0x2f, 0x79, 0x00, 0x4d, 0x14, 0x3a, 0x82, 0xd4, 0x20, 0x0e, 0x43, 0x04, 0xe2, 0x7f, 0xb9, 0x1c, 31 | 0x6d, 0x0f, 0x9d, 0xe8, 0x59, 0x41, 0x28, 0x64, 0x8a, 0x1d, 0xc9, 0x39, 0x58, 0x17, 0xf3, 0xd9, 32 | 0xe3, 0xac, 0x48, 0x0d, 0x90, 0xa2, 0xd0, 0x80, 0x24, 0x9d, 0x8b, 0x07, 0xd3, 0x99, 0x2a, 0xd8, 33 | 0x08, 0x11, 0x41, 0x3a, 0x23, 0x90, 0x1e, 0xce, 0x1d, 0xd5, 0x09, 0xd5, 0xb1, 0xad, 0x02, 0x51, 34 | 0x22, 0x75, 0x04, 0x20, 0x0f, 0x74, 0x9a, 0x1e, 0x0e, 0x33, 0x1b, 0x48, 0x57, 0x06, 0x07, 0x20, 35 | 0x45, 0xd3, 0xa5, 0xd8, 0x33, 0x44, 0x20, 0x23, 0x61, 0x1a, 0xbd, 0x82, 0xbd, 0x12, 0x48, 0x9b, 36 | 0xff, 0x41, 0x83, 0x50, 0x84, 0x08, 0x92, 0x0a, 0x76, 0xfc, 0x28, 0xac, 0x16, 0xa9, 0x8f, 0x8e, 37 | 0xd2, 0x89, 0x00, 0x11, 0x29, 0xf6, 0x04, 0xce, 0xc1, 0xba, 0xd8, 0x79, 0x4b, 0x1e, 0x80, 0x14, 38 | 0x5d, 0x06, 0x90, 0xa4, 0x73, 0x54, 0xb0, 0xbd, 0x30, 0x15, 0x61, 0x9d, 0x10, 0x11, 0x41, 0x56, 39 | 0xe1, 0x41, 0x05, 0xdb, 0x57, 0x78, 0x59, 0x21, 0xf2, 0x02, 0xa6, 0x08, 0x40, 0x4e, 0x90, 0xce, 40 | 0x51, 0xc1, 0x9e, 0x2f, 0xcd, 0x17, 0x21, 0x6b, 0x41, 0x0b, 0x02, 0xb2, 0x47, 0x04, 0x32, 0x3a, 41 | 0xfa, 0xa2, 0x82, 0x1d, 0xef, 0xe5, 0x42, 0x05, 0x1b, 0x85, 0x4e, 0xb1, 0x23, 0x38, 0x4b, 0x2b, 42 | 0xad, 0xa7, 0x82, 0xdd, 0x3f, 0x52, 0x47, 0x08, 0x40, 0x5e, 0x24, 0xd5, 0xa5, 0x82, 0xed, 0xb3, 43 | 0xc7, 0x19, 0x3f, 0x66, 0x01, 0xb8, 0xd1, 0x34, 0x80, 0x24, 0x9d, 0x8b, 0x53, 0x64, 0x98, 0xa5, 44 | 0x82, 0x8d, 0x10, 0x11, 0xe4, 0x0e, 0x2c, 0x7a, 0x83, 0x34, 0xe2, 0xaf, 0x65, 0xd7, 0x22, 0xaf, 45 | 0x91, 0xf0, 0x88, 0xf2, 0x85, 0x7d, 0x60, 0x8a, 0x00, 0xe4, 0xc1, 0x4e, 0xa3, 0x1d, 0x1d, 0x75, 46 | 0x36, 0x90, 0xae, 0xbc, 0x5e, 0xca, 0x92, 0x07, 0x5a, 0x0e, 0x90, 0x33, 0x44, 0x20, 0xd1, 0xbf, 47 | 0x0e, 0x34, 0xf2, 0xe5, 0x32, 0xcb, 0x92, 0x07, 0x15, 0x6c, 0x14, 0x3e, 0xc5, 0x8e, 0x0c, 0x8f, 48 | 0xa3, 0x23, 0xc9, 0xe8, 0x20, 0x3a, 0x0b, 0xa6, 0x44, 0x77, 0x68, 0x39, 0x7d, 0x0b, 0x30, 0x00, 49 | 0x7e, 0x16, 0x56, 0x83, 0xdb, 0x82, 0x99, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 50 | 0xae, 0x42, 0x60, 0x82 51 | }; 52 | const int blue_dark_small_size = sizeof(blue_dark_small); 53 | --------------------------------------------------------------------------------