[Scummvm-git-logs] scummvm master -> 41ab2c799bf96f42427f7699a9ab5e19f257a01c

sluicebox 22204938+sluicebox at users.noreply.github.com
Thu Jul 1 04:00:55 UTC 2021


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:
41ab2c799b CREATE_PROJECT: Fix warning when building on Mac


Commit: 41ab2c799bf96f42427f7699a9ab5e19f257a01c
    https://github.com/scummvm/scummvm/commit/41ab2c799bf96f42427f7699a9ab5e19f257a01c
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2021-06-30T22:50:09-05:00

Commit Message:
CREATE_PROJECT: Fix warning when building on Mac

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 895ec1b99e..c5405dcd4a 100644
--- a/devtools/create_project/create_project.cpp
+++ b/devtools/create_project/create_project.cpp
@@ -2009,7 +2009,7 @@ void ProjectProvider::createModuleList(const std::string &moduleDir, const Strin
 	}
 
 	if (forDetection) {
-		int p = moduleRootDir.find('/');
+		std::string::size_type p = moduleRootDir.find('/');
 		std::string engineName = moduleRootDir.substr(p + 1);
 		std::string engineNameUpper;
 




More information about the Scummvm-git-logs mailing list