HLE: Add Reload() function

This commit is contained in:
Sepalani
2017-04-09 14:02:34 +01:00
parent 20a9c5b12d
commit 5a1ebe232e
3 changed files with 9 additions and 2 deletions
+1 -2
View File
@@ -785,8 +785,7 @@ void SConfig::SetRunningGameMetadata(const std::string& game_id, u64 title_id, u
// TODO: have a callback mechanism for title changes?
g_symbolDB.Clear();
CBoot::LoadMapFromFilename();
HLE::Clear();
HLE::PatchFunctions();
HLE::Reload();
PatchEngine::Reload();
HiresTexture::Update();
}
+7
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;
+1
View File
@@ -27,6 +27,7 @@ enum HookFlag
void PatchFixedFunctions();
void PatchFunctions();
void Clear();
void Reload();
void Patch(u32 pc, const char* func_name);
u32 UnPatch(const std::string& patchName);