X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Fmenu_pico.c;h=e0f7c66ef4c5c7eccc85215d861cf2236e7efeda;hb=e99d80480196f551f7e6c06deae3750de19b4c0e;hp=b9f1d7f1c255cf2eed3586abe54b364019019f09;hpb=95a2ec38bc4338db3c50985d11d86fc04a95b399;p=libpicofe.git diff --git a/common/menu_pico.c b/common/menu_pico.c index b9f1d7f..e0f7c66 100644 --- a/common/menu_pico.c +++ b/common/menu_pico.c @@ -1,4 +1,7 @@ +#include + #include "emu.h" +#include "menu_pico.h" #include #include @@ -22,6 +25,11 @@ static unsigned short fname2color(const char *fname) return 0xffff; } +static const char *filter_exts[] = { + ".mp3", ".MP3", ".srm", ".brm", "s.gz", ".mds", "bcfg", ".txt", ".htm", "html", + ".jpg", ".gpe" +}; + #include "menu.c" /* platform specific options and handlers */ @@ -306,7 +314,7 @@ static int menu_loop_keyconfig(int id, int keys) static int sel = 0; me_enable(e_menu_keyconfig, MA_OPT_SAVECFG_GAME, rom_loaded); - me_loop(e_menu_keyconfig, &sel, NULL); + me_loop(e_menu_keyconfig, &sel); return 0; } @@ -362,7 +370,7 @@ static menu_entry e_menu_cd_options[] = static int menu_loop_cd_options(int id, int keys) { static int sel = 0; - me_loop(e_menu_cd_options, &sel, NULL); + me_loop(e_menu_cd_options, &sel); return 0; } @@ -399,8 +407,8 @@ static const char *mgn_opt_sh2cycles(int id, int *offs) static const char h_32x_enable[] = "Enable emulation of the 32X addon"; static const char h_pwm[] = "Disabling may improve performance, but break sound"; static const char h_sh2cycles[] = "Cycles/millisecond (similar to DOSBox)\n" - "lower values speed up emulation but break games\n" - "at least 11000 recommended for compatibility"; + "lower values speed up emulation but break games\n" + "at least 11000 recommended for compatibility"; static menu_entry e_menu_32x_options[] = { @@ -417,7 +425,7 @@ static int menu_loop_32x_options(int id, int keys) static int sel = 0; me_enable(e_menu_32x_options, MA_32XOPT_RENDERER, renderer_names32x[0] != NULL); - me_loop(e_menu_32x_options, &sel, NULL); + me_loop(e_menu_32x_options, &sel); return 0; } @@ -444,7 +452,7 @@ static menu_entry e_menu_adv_options[] = static int menu_loop_adv_options(int id, int keys) { static int sel = 0; - me_loop(e_menu_adv_options, &sel, NULL); + me_loop(e_menu_adv_options, &sel); return 0; } @@ -462,7 +470,7 @@ static int menu_loop_gfx_options(int id, int keys) static int sel = 0; me_enable(e_menu_gfx_options, MA_OPT_RENDERER, renderer_names[0] != NULL); - me_loop(e_menu_gfx_options, &sel, NULL); + me_loop(e_menu_gfx_options, &sel); return 0; } @@ -668,7 +676,7 @@ static int menu_loop_options(int id, int keys) me_enable(e_menu_options, MA_OPT_SAVECFG_GAME, rom_loaded); me_enable(e_menu_options, MA_OPT_LOADCFG, config_slot != config_slot_current); - me_loop(e_menu_options, &sel, NULL); + me_loop(e_menu_options, &sel); return 0; } @@ -828,6 +836,26 @@ static void debug_menu_loop(void) // ------------ main menu ------------ +static const char credits[] = + "PicoDrive v" VERSION " (c) notaz, 2006-2011\n\n\n" + "Credits:\n" + "fDave: Cyclone 68000 core,\n" + " base code of PicoDrive\n" + "Reesy & FluBBa: DrZ80 core\n" + "MAME devs: YM2612 and SN76496 cores\n" + "Inder, ketchupgun: graphics\n" +#ifdef __GP2X__ + "rlyeh and others: minimal SDK\n" + "Squidge: mmuhack\n" + "Dzz: ARM940 sample\n" +#endif + "\n" + "special thanks (for docs, ideas):\n" + " Charles MacDonald, Haze,\n" + " Stephane Dallongeville,\n" + " Lordus, Exophase, Rokas,\n" + " Nemesis, Tasco Deluxe"; + static char *romsel_run(void) { char *ret, *sel_name; @@ -875,7 +903,7 @@ static int main_menu_handler(int id, int keys) } break; case MA_MAIN_CREDITS: - draw_menu_credits(); + draw_menu_message(credits, NULL); in_menu_wait(PBTN_MOK|PBTN_MBACK, 70); break; case MA_MAIN_EXIT: @@ -927,7 +955,7 @@ void menu_loop(void) menu_enter(rom_loaded); in_set_config_int(0, IN_CFG_BLOCKING, 1); - me_loop(e_menu_main, &sel, menu_main_plat_draw); + me_loop_d(e_menu_main, &sel, NULL, menu_main_plat_draw); if (rom_loaded) { if (engineState == PGS_Menu) @@ -976,7 +1004,7 @@ int menu_loop_tray(void) menu_enter(rom_loaded); in_set_config_int(0, IN_CFG_BLOCKING, 1); - me_loop(e_menu_tray, &sel, NULL); + me_loop(e_menu_tray, &sel); if (engineState != PGS_RestartRun) { engineState = PGS_RestartRun;