Add missing break to prevent fallthrough

This commit is contained in:
Silent 2019-10-08 20:46:28 +02:00
parent f6a5811b73
commit 5e7b95db3b
No known key found for this signature in database
GPG Key ID: AE53149BB0C45AF1
1 changed files with 1 additions and 0 deletions

View File

@ -56,6 +56,7 @@ GameTracker::GameTracker(QObject* parent) : QFileSystemWatcher(parent)
break; break;
case CommandType::Start: case CommandType::Start:
StartInternal(); StartInternal();
break;
case CommandType::AddDirectory: case CommandType::AddDirectory:
AddDirectoryInternal(command.path); AddDirectoryInternal(command.path);
break; break;