aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/flame
diff options
context:
space:
mode:
authorPandaNinjas <admin@malwarefight.wip.la>2023-06-07 19:37:54 -0400
committerPandaNinjas <admin@malwarefight.wip.la>2023-06-07 19:37:54 -0400
commit318d11481d719cf537ecdc00f8d676494bab22b6 (patch)
tree081a070aeeb4ca0f05fceef19eb64d5075edaf04 /launcher/modplatform/flame
parent5d425ecc025aa1fc4a5292961a5ff1b18a108885 (diff)
downloadPrismLauncher-318d11481d719cf537ecdc00f8d676494bab22b6.tar.gz
PrismLauncher-318d11481d719cf537ecdc00f8d676494bab22b6.tar.bz2
PrismLauncher-318d11481d719cf537ecdc00f8d676494bab22b6.zip
Resolve other switch fallthrough issues
Diffstat (limited to 'launcher/modplatform/flame')
-rw-r--r--launcher/modplatform/flame/FlameInstanceCreationTask.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/launcher/modplatform/flame/FlameInstanceCreationTask.cpp b/launcher/modplatform/flame/FlameInstanceCreationTask.cpp
index dae93d1c..11365a21 100644
--- a/launcher/modplatform/flame/FlameInstanceCreationTask.cpp
+++ b/launcher/modplatform/flame/FlameInstanceCreationTask.cpp
@@ -467,8 +467,9 @@ void FlameCreationTask::setupDownloadJob(QEventLoop& loop)
switch (result.type) {
case Flame::File::Type::Folder: {
logWarning(tr("This 'Folder' may need extracting: %1").arg(relpath));
- // fall-through intentional, we treat these as plain old mods and dump them wherever.
+ // fallthrough intentional, we treat these as plain old mods and dump them wherever.
}
+ /* fallthrough */
case Flame::File::Type::SingleFile:
case Flame::File::Type::Mod: {
if (!result.url.isEmpty()) {