[Scummvm-git-logs] scummvm master -> cdaa3020ee1e8d558dadeef4a2a7ca78dbccd2e4

sluicebox 22204938+sluicebox at users.noreply.github.com
Wed Nov 11 05:10:42 UTC 2020


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:
cdaa3020ee CREATE_PROJECT: Code formatting


Commit: cdaa3020ee1e8d558dadeef4a2a7ca78dbccd2e4
    https://github.com/scummvm/scummvm/commit/cdaa3020ee1e8d558dadeef4a2a7ca78dbccd2e4
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2020-11-10T21:10:01-08:00

Commit Message:
CREATE_PROJECT: Code formatting

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 0202034613..6741e173b6 100644
--- a/devtools/create_project/create_project.cpp
+++ b/devtools/create_project/create_project.cpp
@@ -1551,7 +1551,7 @@ void ProjectProvider::createProject(BuildSetup &setup) {
 			detectionModuleDirs.push_back(setup.srcDir + "/engines/" + i->name);
 		}
 
-        for (std::vector<std::string>::const_iterator i = detectionModuleDirs.begin(), end = detectionModuleDirs.end(); i != end; ++i) {
+		for (std::vector<std::string>::const_iterator i = detectionModuleDirs.begin(), end = detectionModuleDirs.end(); i != end; ++i) {
 			createModuleList(*i, setup.defines, setup.testDirs, in, ex, true);
 		}
 
@@ -1992,7 +1992,7 @@ void ProjectProvider::createModuleList(const std::string &moduleDir, const Strin
 		std::string engineName = moduleRootDir.substr(p + 1);
 		std::string engineNameUpper;
 
-        for (std::string::const_iterator i = engineName.begin(); i != engineName.end(); ++i) {
+		for (std::string::const_iterator i = engineName.begin(); i != engineName.end(); ++i) {
 			engineNameUpper += toupper(*i);
 		}
 		for (;;) {




More information about the Scummvm-git-logs mailing list