diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2024-01-05 09:31:59 +0100 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2024-01-05 20:15:18 +0100 |
| commit | fc2ec826d462881f94b324fb6971cc920200f093 (patch) | |
| tree | 9c2e83ecb4f93ee175022d3e3b23df84840313f5 /Source/Core/DolphinQt/MainWindow.cpp | |
| parent | 2f7f7afe6d222699c04d490f10f8aa16c11373d3 (diff) | |
FifoPlayer: Move instance to System.
Diffstat (limited to 'Source/Core/DolphinQt/MainWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/MainWindow.cpp | 2 |
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); }); } |
