From d0944fc942fad418aed45245e4259780f2fc0697 Mon Sep 17 00:00:00 2001 From: notaz Date: Wed, 7 Sep 2011 23:45:45 +0300 Subject: store saves and configs in gpsp dir Don't like ROM dir littering. Still looking there for .sav and .cht files though. --- main.c | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 340b0be..967ac73 100644 --- a/main.c +++ b/main.c @@ -178,6 +178,9 @@ void init_main() int main(int argc, char *argv[]) { + char bios_filename[512]; + int ret; + #ifdef PSP_BUILD sceKernelRegisterSubIntrHandler(PSP_VBLANK_INT, 0, vblank_interrupt_handler, NULL); @@ -208,13 +211,11 @@ int main(int argc, char *argv[]) init_video(); -#ifdef GP2X_BUILD - char bios_filename[512]; - sprintf(bios_filename, "%s/%s", main_path, "gba_bios.bin"); - if(load_bios(bios_filename) == -1) -#else - if(load_bios("gba_bios.bin") == -1) -#endif + sprintf(bios_filename, "%s" PATH_SEPARATOR "%s", main_path, "gba_bios.bin"); + ret = load_bios(bios_filename); + if (ret != 0) + ret = load_bios("gba_bios.bin"); + if (ret != 0) { gui_action_type gui_action = CURSOR_NONE; @@ -579,10 +580,10 @@ u32 update_gba() frame_ticks++; #ifdef PC_BUILD - printf("frame update (%x), %d instructions total, %d RAM flushes\n", +/* printf("frame update (%x), %d instructions total, %d RAM flushes\n", reg[REG_PC], instruction_count - last_frame, flush_ram_count); last_frame = instruction_count; - +*/ /* printf("%d gbc audio updates\n", gbc_update_count); printf("%d oam updates\n", oam_update_count); */ gbc_update_count = 0; @@ -943,6 +944,20 @@ void change_ext(const char *src, char *buffer, const char *extension) strcpy(dot_position, extension); } +// make path: /. +void make_rpath(char *buff, size_t size, const char *ext) +{ + char *p; + p = strrchr(gamepak_filename, PATH_SEPARATOR_CHAR); + if (p == NULL) + p = gamepak_filename; + + snprintf(buff, size, "%s/%s", main_path, p); + p = strrchr(buff, '.'); + if (p != NULL) + strcpy(p, ext); +} + #define main_savestate_builder(type) \ void main_##type##_savestate(file_tag_type savestate_file) \ { \ -- cgit v1.2.3