From 5e7b95db3b87270cb8607a1981cc08a9a679dc1f Mon Sep 17 00:00:00 2001 From: Silent Date: Tue, 8 Oct 2019 20:46:28 +0200 Subject: [PATCH] Add missing break to prevent fallthrough --- Source/Core/DolphinQt/GameList/GameTracker.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/GameList/GameTracker.cpp b/Source/Core/DolphinQt/GameList/GameTracker.cpp index 765e98a710..b4f2d7a159 100644 --- a/Source/Core/DolphinQt/GameList/GameTracker.cpp +++ b/Source/Core/DolphinQt/GameList/GameTracker.cpp @@ -56,6 +56,7 @@ GameTracker::GameTracker(QObject* parent) : QFileSystemWatcher(parent) break; case CommandType::Start: StartInternal(); + break; case CommandType::AddDirectory: AddDirectoryInternal(command.path); break;