[Project64] Add settngs for Debugger_TraceExceptionHandler
This commit is contained in:
parent
637b09b85f
commit
91e1e22f38
|
@ -239,6 +239,7 @@ enum SettingID
|
|||
Debugger_TraceProtectedMEM,
|
||||
Debugger_TraceUserInterface,
|
||||
Debugger_TraceRomList,
|
||||
Debugger_TraceExceptionHandler,
|
||||
|
||||
//Plugins
|
||||
Plugin_RSP_Current,
|
||||
|
|
|
@ -318,7 +318,8 @@ void CSettings::AddHowToHandleSetting(const char * BaseDirectory)
|
|||
AddHandler(Debugger_TraceTLB, new CSettingTypeApplication("Logging", "TLB", (uint32_t)g_ModuleLogLevel[TraceTLB]));
|
||||
AddHandler(Debugger_TraceProtectedMEM, new CSettingTypeApplication("Logging", "Protected MEM", (uint32_t)g_ModuleLogLevel[TraceProtectedMem]));
|
||||
AddHandler(Debugger_TraceUserInterface, new CSettingTypeApplication("Logging", "User Interface", (uint32_t)g_ModuleLogLevel[TraceUserInterface]));
|
||||
AddHandler(Debugger_TraceRomList, new CSettingTypeApplication("Logging", "Rom List", (uint32_t)g_ModuleLogLevel[TraceUserInterface]));
|
||||
AddHandler(Debugger_TraceRomList, new CSettingTypeApplication("Logging", "Rom List", (uint32_t)g_ModuleLogLevel[TraceRomList]));
|
||||
AddHandler(Debugger_TraceExceptionHandler, new CSettingTypeApplication("Logging", "Exception Handler", (uint32_t)g_ModuleLogLevel[TraceExceptionHandler]));
|
||||
|
||||
//Plugin
|
||||
AddHandler(Plugin_RSP_Current, new CSettingTypeApplication("Plugin", "RSP Dll", "RSP\\RSP 1.7.dll"));
|
||||
|
|
Loading…
Reference in New Issue