aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project/visualstudio.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2012-05-20 20:57:59 +0300
committerFilippos Karapetis2012-05-20 20:57:59 +0300
commit9feac7215efe42efe615ceac0c7b1cc8eb11f68c (patch)
treeb058d540034eac157ca0e49078e22a76d4cb2275 /devtools/create_project/visualstudio.cpp
parent6fb9511c93393a73a7177ed5fb56c3776e5f3a23 (diff)
downloadscummvm-rg350-9feac7215efe42efe615ceac0c7b1cc8eb11f68c.tar.gz
scummvm-rg350-9feac7215efe42efe615ceac0c7b1cc8eb11f68c.tar.bz2
scummvm-rg350-9feac7215efe42efe615ceac0c7b1cc8eb11f68c.zip
CREATE_PROJECT: Disable edit and continue in the scummvm project
Edit and continue is not compatible with the coroutine code. Previously, it was disabled in the tinsel project only, but now that the coroutine code has been moved into common, we need to disable edit and continue in the scummvm project instead
Diffstat (limited to 'devtools/create_project/visualstudio.cpp')
-rw-r--r--devtools/create_project/visualstudio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/create_project/visualstudio.cpp b/devtools/create_project/visualstudio.cpp
index 9bf031704e..62b30ddcd0 100644
--- a/devtools/create_project/visualstudio.cpp
+++ b/devtools/create_project/visualstudio.cpp
@@ -110,7 +110,7 @@ void VisualStudioProvider::createProjectFile(const std::string &name, const std:
std::string toolConfig;
toolConfig = (!warnings.empty() ? "DisableSpecificWarnings=\"" + warnings + "\"" : "");
- toolConfig += (name == "tinsel" ? "DebugInformationFormat=\"3\" " : "");
+ toolConfig += (name == "scummvm" ? "DebugInformationFormat=\"3\" " : "");
toolConfig += (name == "sword25" ? "DisableLanguageExtensions=\"false\" " : "");
toolConfig += (name == "grim" ? "DisableLanguageExtensions=\"false\" " : "");