mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Memory(View)Widget: Avoid Global System Accessor
This commit is contained in:
parent
5a81916ee9
commit
26141eece8
5 changed files with 22 additions and 26 deletions
|
@ -449,7 +449,7 @@ void MainWindow::CreateComponents()
|
|||
m_jit_widget = new JITWidget(this);
|
||||
m_log_widget = new LogWidget(this);
|
||||
m_log_config_widget = new LogConfigWidget(this);
|
||||
m_memory_widget = new MemoryWidget(this);
|
||||
m_memory_widget = new MemoryWidget(Core::System::GetInstance(), this);
|
||||
m_network_widget = new NetworkWidget(this);
|
||||
m_register_widget = new RegisterWidget(this);
|
||||
m_thread_widget = new ThreadWidget(this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue