[Scummvm-git-logs] scummvm master -> 380ccf54ce6bb17f26e08264143b9a63498b41d3
lephilousophe
noreply at scummvm.org
Sat Jan 4 11:01:36 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
380ccf54ce CREATE_PROJECT: add_component line has 5 tokens and not 4
Commit: 380ccf54ce6bb17f26e08264143b9a63498b41d3
https://github.com/scummvm/scummvm/commit/380ccf54ce6bb17f26e08264143b9a63498b41d3
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2025-01-04T12:01:19+01:00
Commit Message:
CREATE_PROJECT: add_component line has 5 tokens and not 4
Changed paths:
devtools/create_project/create_project.cpp
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp
index c95f6a5a42b..5ae9a7f0b55 100644
--- a/devtools/create_project/create_project.cpp
+++ b/devtools/create_project/create_project.cpp
@@ -1309,7 +1309,7 @@ ComponentList getAllComponents(const std::string &srcDir, FeatureList &features)
TokenList tokens = tokenize(line);
- if (tokens.size() < 4)
+ if (tokens.size() < 5)
continue;
TokenList::const_iterator token = tokens.begin();
More information about the Scummvm-git-logs
mailing list