HLE: Add Reload() function

This commit is contained in:
Sepalani
2017-04-06 15:42:08 +01:00
parent 20a9c5b12d
commit 5a1ebe232e
3 changed files with 9 additions and 2 deletions

View File

@ -160,6 +160,13 @@ void Clear()
s_original_instructions.clear();
}
void Reload()
{
Clear();
PatchFixedFunctions();
PatchFunctions();
}
void Execute(u32 _CurrentPC, u32 _Instruction)
{
unsigned int FunctionIndex = _Instruction & 0xFFFFF;