mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
rsx::thread moved from rsx2 branch
TODO: cellResc module & RsxDebugger disabled, DX12 renderer not compilable
This commit is contained in:
parent
a7262d34f0
commit
1e7ded2163
33 changed files with 8324 additions and 6803 deletions
|
|
@ -423,27 +423,29 @@ void MainFrame::ConfigLLEModules(wxCommandEvent& event)
|
|||
|
||||
void MainFrame::OpenELFCompiler(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
(new CompilerELF(this)) -> Show();
|
||||
(new CompilerELF(this))->Show();
|
||||
}
|
||||
|
||||
void MainFrame::OpenKernelExplorer(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
(new KernelExplorer(this)) -> Show();
|
||||
(new KernelExplorer(this))->Show();
|
||||
}
|
||||
|
||||
void MainFrame::OpenMemoryViewer(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
(new MemoryViewerPanel(this)) -> Show();
|
||||
(new MemoryViewerPanel(this))->Show();
|
||||
}
|
||||
|
||||
void MainFrame::OpenRSXDebugger(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
(new RSXDebugger(this)) -> Show();
|
||||
#if _USE_RSX_DEBUGGER
|
||||
(new RSXDebugger(this))->Show();
|
||||
#endif
|
||||
}
|
||||
|
||||
void MainFrame::OpenStringSearch(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
(new MemoryStringSearcher(this)) -> Show();
|
||||
(new MemoryStringSearcher(this))->Show();
|
||||
}
|
||||
|
||||
void MainFrame::OpenCgDisasm(wxCommandEvent& WXUNUSED(event))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue