diff options
| author | Silent <zdanio95@gmail.com> | 2019-10-08 20:46:28 +0200 |
|---|---|---|
| committer | Silent <zdanio95@gmail.com> | 2019-10-19 23:06:58 +0200 |
| commit | 5e7b95db3b87270cb8607a1981cc08a9a679dc1f (patch) | |
| tree | a4ab37a4f1a6710e79f434eb30daebfacf78a39d | |
| parent | f6a5811b73a9e2539944e2db216d45acbb443c35 (diff) | |
Add missing break to prevent fallthrough
| -rw-r--r-- | Source/Core/DolphinQt/GameList/GameTracker.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
