(VITA) Dynarec changes

This commit is contained in:
Francisco José García García 2016-10-04 07:32:54 +00:00
parent 6bfb7e1b47
commit adcf1c6f73
2 changed files with 3 additions and 2 deletions

View File

@ -2863,7 +2863,7 @@ u8 *block_lookup_address_##type(u32 pc) \
/* Starting at the beginning, we allow for one translation cache flush. */ \ /* Starting at the beginning, we allow for one translation cache flush. */ \
if(translation_recursion_level == 0){ \ if(translation_recursion_level == 0){ \
translation_flush_count = 0; \ translation_flush_count = 0; \
RW_INIT(); \ \
} \ } \
block_lookup_address_pc_##type(); \ block_lookup_address_pc_##type(); \
\ \

View File

@ -189,6 +189,7 @@ void retro_init(void)
rom_translation_ptr = rom_translation_cache; rom_translation_ptr = rom_translation_cache;
ram_translation_ptr = ram_translation_cache; ram_translation_ptr = ram_translation_cache;
bios_translation_ptr = bios_translation_cache; bios_translation_ptr = bios_translation_cache;
sceKernelOpenVMDomain();
translation_caches_inited = 1; translation_caches_inited = 1;
} }