(VITA) Dynarec changes
This commit is contained in:
parent
6bfb7e1b47
commit
adcf1c6f73
|
@ -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(); \
|
||||||
\
|
\
|
||||||
|
@ -2959,7 +2959,7 @@ u8 *block_lookup_address_##type(u32 pc) \
|
||||||
block_address = (u8 *)(-1); \
|
block_address = (u8 *)(-1); \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
\
|
\
|
||||||
return block_address; \
|
return block_address; \
|
||||||
} \
|
} \
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue