diff options
author | hizzlekizzle | 2019-10-22 15:19:04 -0500 |
---|---|---|
committer | GitHub | 2019-10-22 15:19:04 -0500 |
commit | a6d35e0165e270e7fc760b9a559a57ca9318ec11 (patch) | |
tree | cc0ddb321febbce3925d404b7340da7704dfe582 /gba_memory.c | |
parent | 24af89596e6484ff5a7a08efecfa8288cfbc02f3 (diff) | |
parent | a60de42f3a7fba8e22d5b2a602a035c68ea4223c (diff) | |
download | picogpsp-a6d35e0165e270e7fc760b9a559a57ca9318ec11.tar.gz picogpsp-a6d35e0165e270e7fc760b9a559a57ca9318ec11.tar.bz2 picogpsp-a6d35e0165e270e7fc760b9a559a57ca9318ec11.zip |
Merge pull request #56 from bmaupin/enable-psp-dynarec
Reenable dynarec for PSP
Diffstat (limited to 'gba_memory.c')
-rw-r--r-- | gba_memory.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gba_memory.c b/gba_memory.c index 15ad808..970fbee 100644 --- a/gba_memory.c +++ b/gba_memory.c @@ -343,7 +343,7 @@ gamepak_swap_entry_type *gamepak_memory_map; // This is global so that it can be kept open for large ROMs to swap // pages from, so there's no slowdown with opening and closing the file // a lot. -#ifdef PSP_BUILD +#ifdef PSP file_tag_type gamepak_file_large = -1; @@ -2391,9 +2391,7 @@ static s32 load_game_config(char *gamepak_title, char *gamepak_code, char *gamep fclose(config_file); } -#ifndef PSP_BUILD printf("game config missing\n"); -#endif return -1; } @@ -2418,7 +2416,7 @@ static s32 load_gamepak_raw(const char *name) file_close(gamepak_file); -#ifdef PSP_BUILD +#ifdef PSP gamepak_file_large = -1; #else gamepak_file_large = NULL; |