mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-17 20:35:18 +00:00
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:
parent
bbb7435041
commit
e9ee084231
2 changed files with 49 additions and 1 deletions
|
|
@ -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);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue