diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2024-01-12 13:35:47 +0100 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2024-01-12 15:06:06 +0100 |
| commit | 637fd4990914831ae164c2f410cf60fe4f0d28c4 (patch) | |
| tree | eab2b1ccd1da4d8f46ee1189aced231821e1126f /Source/Core/DolphinQt/MainWindow.cpp | |
| parent | 6725c25600ea635622ec4ad31bbe316b20cc895b (diff) | |
FifoRecorder: Move instance to System.
Diffstat (limited to 'Source/Core/DolphinQt/MainWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/MainWindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index 45289dbee3..74e6198c84 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -1363,7 +1363,8 @@ void MainWindow::ShowFIFOPlayer() { if (!m_fifo_window) { - m_fifo_window = new FIFOPlayerWindow(Core::System::GetInstance().GetFifoPlayer()); + m_fifo_window = new FIFOPlayerWindow(Core::System::GetInstance().GetFifoPlayer(), + Core::System::GetInstance().GetFifoRecorder()); connect(m_fifo_window, &FIFOPlayerWindow::LoadFIFORequested, this, [this](const QString& path) { StartGame(path, ScanForSecondDisc::No); }); } |
