summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/MainWindow.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2024-01-05 09:31:59 +0100
committerAdmiral H. Curtiss <pikachu025@gmail.com>2024-01-05 20:15:18 +0100
commitfc2ec826d462881f94b324fb6971cc920200f093 (patch)
tree9c2e83ecb4f93ee175022d3e3b23df84840313f5 /Source/Core/DolphinQt/MainWindow.cpp
parent2f7f7afe6d222699c04d490f10f8aa16c11373d3 (diff)
FifoPlayer: Move instance to System.
Diffstat (limited to 'Source/Core/DolphinQt/MainWindow.cpp')
-rw-r--r--Source/Core/DolphinQt/MainWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp
index ef1bbe7642..45289dbee3 100644
--- a/Source/Core/DolphinQt/MainWindow.cpp
+++ b/Source/Core/DolphinQt/MainWindow.cpp
@@ -1363,7 +1363,7 @@ void MainWindow::ShowFIFOPlayer()
{
if (!m_fifo_window)
{
- m_fifo_window = new FIFOPlayerWindow;
+ m_fifo_window = new FIFOPlayerWindow(Core::System::GetInstance().GetFifoPlayer());
connect(m_fifo_window, &FIFOPlayerWindow::LoadFIFORequested, this,
[this](const QString& path) { StartGame(path, ScanForSecondDisc::No); });
}