Automatic-Pause at specified function calls, can be set up using "pause.bin" with rpcs3.

You would need to find the function ids you wanna play with and write them reversed with Hex Editor.
That's quite pity i have no knowledge about wxWidgets so there is no GUI to set up this.
This commit is contained in:
luxsie 2014-08-12 04:15:20 +08:00
parent bbb7435041
commit e9ee084231
2 changed files with 49 additions and 1 deletions

View file

@ -10,6 +10,7 @@ class ModuleManager
std::vector<ModuleFunc *> m_modules_funcs_list;
std::vector<Module> m_mod_init;
bool initialized;
std::vector<u32> m_funcs_pause_funcs;
public:
ModuleManager();
~ModuleManager();
@ -24,5 +25,5 @@ public:
u32 GetFuncNumById(u32 id);
Module* GetModuleByName(const std::string& name);
Module* GetModuleById(u16 id);
void LoadFuncPauses(void);
};