[Scummvm-git-logs] scummvm master -> 5d189d90f18748324c43dee55d8b988150beac69

dreammaster noreply at scummvm.org
Mon Nov 21 04:50:22 UTC 2022


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ed65c576af DEVTOOLS: CREATE_ENGINE: Visual Studio compilation fix
5d189d90f1 DEVTOOLS: CREATE_ENGINE: Add disable-detection-full to created batch file


Commit: ed65c576af5d17d723a95d6f9e8f7f3ff903b422
    https://github.com/scummvm/scummvm/commit/ed65c576af5d17d723a95d6f9e8f7f3ff903b422
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2022-11-20T20:45:24-08:00

Commit Message:
DEVTOOLS: CREATE_ENGINE: Visual Studio compilation fix

Changed paths:
    devtools/create_engine/create_engine.cpp


diff --git a/devtools/create_engine/create_engine.cpp b/devtools/create_engine/create_engine.cpp
index 9cdeea00cd4..6d8efe45628 100644
--- a/devtools/create_engine/create_engine.cpp
+++ b/devtools/create_engine/create_engine.cpp
@@ -59,7 +59,7 @@ bool fileExists(const char *name) {
 
 bool createDirectory(const char *name) {
 #ifdef _MSC_VER
-	return CreateDirectoryA(name);
+	return CreateDirectoryA(name, nullptr);
 #else
 	return (!mkdir(name, 0755));
 #endif


Commit: 5d189d90f18748324c43dee55d8b988150beac69
    https://github.com/scummvm/scummvm/commit/5d189d90f18748324c43dee55d8b988150beac69
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2022-11-20T20:47:26-08:00

Commit Message:
DEVTOOLS: CREATE_ENGINE: Add disable-detection-full to created batch file

Changed paths:
    devtools/create_engine/create_engine.cpp


diff --git a/devtools/create_engine/create_engine.cpp b/devtools/create_engine/create_engine.cpp
index 6d8efe45628..3a6dc70a2b4 100644
--- a/devtools/create_engine/create_engine.cpp
+++ b/devtools/create_engine/create_engine.cpp
@@ -168,7 +168,7 @@ void create_batch_file(const char *prefix) {
 	while (fgets(line, MAX_LINE_LENGTH, in)) {
 		if (!strcmp(line, ENGINES)) {
 			snprintf(line + strlen(line) - 1, MAX_LINE_LENGTH - strlen(line) + 1,
-				" --disable-all-engines --enable-engine=%s\n",
+				" --disable-all-engines --disable-detection-full --enable-engine=%s\n",
 				engineLowercase);
 		}
 




More information about the Scummvm-git-logs mailing list