summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/MainWindow.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2023-03-10 18:33:09 +0100
committerAdmiral H. Curtiss <pikachu025@gmail.com>2023-03-10 18:37:18 +0100
commitee35103ed9ae9e7ac1447232eaccda031835222f (patch)
tree79d4c5b07e8d79e4e7e5b482bc97dcdcaeeb57c3 /Source/Core/DolphinQt/MainWindow.cpp
parentdca8e9dc1ef0691462d464167145fe126cdcb1d2 (diff)
HW/DVD: Rename DVDInterface namespace to DVD.
Diffstat (limited to 'Source/Core/DolphinQt/MainWindow.cpp')
-rw-r--r--Source/Core/DolphinQt/MainWindow.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp
index 604400f1c3..ac34999c4d 100644
--- a/Source/Core/DolphinQt/MainWindow.cpp
+++ b/Source/Core/DolphinQt/MainWindow.cpp
@@ -752,9 +752,8 @@ void MainWindow::ChangeDisc()
void MainWindow::EjectDisc()
{
- Core::RunAsCPUThread([] {
- Core::System::GetInstance().GetDVDInterface().EjectDisc(DVDInterface::EjectCause::User);
- });
+ Core::RunAsCPUThread(
+ [] { Core::System::GetInstance().GetDVDInterface().EjectDisc(DVD::EjectCause::User); });
}
void MainWindow::OpenUserFolder()