diff --git a/.gitignore b/.gitignore index 742cba8e..413ecd49 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ *.o *.swp +*.SFO +*.PBP *.dll *.lib *.pdb @@ -32,6 +34,7 @@ picodrive_libretro* PicoDrive*.opk PicoDrive*.ipk PicoDrive*.zip +PicoDrive*.elf pico_int_offs.h amalgamate textfilter diff --git a/platform/common/menu_pico.c b/platform/common/menu_pico.c index 53e52b87..1e8d33e3 100644 --- a/platform/common/menu_pico.c +++ b/platform/common/menu_pico.c @@ -1352,23 +1352,19 @@ static const char h_saveload[] = "Game options are overloading global options"; static menu_entry e_menu_main[] = { - mee_label ("PicoDrive " VERSION), + mee_label ("Sonic's UGC for PSP " VERSION), mee_label (""), mee_label (""), - mee_handler_id("Resume game", MA_MAIN_RESUME_GAME, main_menu_handler), - mee_handler_id("Save state", MA_MAIN_SAVE_STATE, main_menu_handler), - mee_handler_id("Load state", MA_MAIN_LOAD_STATE, main_menu_handler), - mee_handler_id("Reset game", MA_MAIN_RESET_GAME, main_menu_handler), + mee_handler_id("Resume Game", MA_MAIN_RESUME_GAME, main_menu_handler), + mee_handler_id("Save Game", MA_MAIN_SAVE_STATE, main_menu_handler), + mee_handler_id("Load Game", MA_MAIN_LOAD_STATE, main_menu_handler), + mee_handler_id("Reset Game", MA_MAIN_RESET_GAME, main_menu_handler), mee_handler_id("Change CD", MA_MAIN_CHANGE_CD, main_menu_handler), mee_cust_s_h ("Storyware page", MA_MAIN_PICO_PAGE, 0,mh_picopage, mgn_picopage, NULL), mee_handler_id("Patches / GameGenie",MA_MAIN_PATCHES, main_menu_handler), - mee_handler_id("Load new game", MA_MAIN_LOAD_ROM, main_menu_handler), - mee_handler ("Change options", menu_loop_options), - mee_cust_s_h ("Save global options",MA_OPT_SAVECFG, 0, mh_saveloadcfg, mgn_saveloadcfg, NULL), - mee_cust_s_h ("Save game options", MA_OPT_SAVECFG_GAME, 0, mh_saveloadcfg, mgn_saveloadcfg, h_saveload), - mee_cust_s_h ("Load game options", MA_OPT_LOADCFG, 0, mh_saveloadcfg, mgn_saveloadcfg, h_saveload), - mee_handler_id("Credits", MA_MAIN_CREDITS, main_menu_handler), - mee_handler_id("Exit", MA_MAIN_EXIT, main_menu_handler), + mee_handler_id("Press START button to begin", MA_MAIN_LOAD_ROM, main_menu_handler), + mee_cust_s_h ("Save Game Options", MA_OPT_SAVECFG_GAME, 0, mh_saveloadcfg, mgn_saveloadcfg, h_saveload), + mee_cust_s_h ("Load Game Options", MA_OPT_LOADCFG, 0, mh_saveloadcfg, mgn_saveloadcfg, h_saveload), mee_end, }; diff --git a/platform/common/version.h b/platform/common/version.h index 230f315a..83a92b46 100644 --- a/platform/common/version.h +++ b/platform/common/version.h @@ -1 +1 @@ -#define VERSION "2.00" REVISION +#define VERSION "T2" \ No newline at end of file diff --git a/platform/psp/menu.c b/platform/psp/menu.c index 99a7d0e2..4beaff80 100644 --- a/platform/psp/menu.c +++ b/platform/psp/menu.c @@ -14,7 +14,6 @@ static const char h_8bit[] = "This option only works for 8bit renderers"; mee_onoff ("Wait for vsync", MA_OPT3_VSYNC, currentConfig.EmuOpt, EOPT_VSYNC), \ #define MENU_OPTIONS_ADV - static menu_entry e_menu_sms_options[]; static menu_entry e_menu_keyconfig[]; diff --git a/platform/psp/plat.c b/platform/psp/plat.c index 53e13616..b02388b5 100644 --- a/platform/psp/plat.c +++ b/platform/psp/plat.c @@ -156,7 +156,7 @@ int plat_get_skin_dir(char *dst, int len) int plat_get_data_dir(char *dst, int len) { if (len > 5) - strcpy(dst, "ms0:/"); + strcpy(dst, "rom/"); else if (len > 0) *dst = 0; return strlen(dst);