summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/MainWindow.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2024-01-12 13:35:47 +0100
committerAdmiral H. Curtiss <pikachu025@gmail.com>2024-01-12 15:06:06 +0100
commit637fd4990914831ae164c2f410cf60fe4f0d28c4 (patch)
treeeab2b1ccd1da4d8f46ee1189aced231821e1126f /Source/Core/DolphinQt/MainWindow.cpp
parent6725c25600ea635622ec4ad31bbe316b20cc895b (diff)
FifoRecorder: Move instance to System.
Diffstat (limited to 'Source/Core/DolphinQt/MainWindow.cpp')
-rw-r--r--Source/Core/DolphinQt/MainWindow.cpp3
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); });
}