aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorLittleboy2016-09-23 22:34:47 -0400
committerLittleboy2016-09-23 22:34:47 -0400
commite34960f633ff771d7d404698019cec57d5a8b507 (patch)
tree0cd66a42535788f9dfc516ee7674633e0668804f /devtools
parentc443b84daeeb5db5736e1062fdb70a7124d5adaf (diff)
downloadscummvm-rg350-e34960f633ff771d7d404698019cec57d5a8b507.tar.gz
scummvm-rg350-e34960f633ff771d7d404698019cec57d5a8b507.tar.bz2
scummvm-rg350-e34960f633ff771d7d404698019cec57d5a8b507.zip
CREATE_PROJECT: Add SCUMM_64BITS to ScummVM_Global64.props (fixes #9566)
Diffstat (limited to 'devtools')
-rw-r--r--devtools/create_project/msvc.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/devtools/create_project/msvc.cpp b/devtools/create_project/msvc.cpp
index e6b47fe724..64f3472697 100644
--- a/devtools/create_project/msvc.cpp
+++ b/devtools/create_project/msvc.cpp
@@ -158,6 +158,7 @@ void MSVCProvider::createGlobalProp(const BuildSetup &setup) {
// HACK: This definitely should not be here, but otherwise we would not define SDL_BACKEND for x64.
x64Defines.push_back("WIN32");
x64Defines.push_back("SDL_BACKEND");
+ x64Defines.push_back("SCUMM_64BITS");
outputGlobalPropFile(setup, properties, 64, x64Defines, convertPathToWin(setup.filePrefix), setup.runBuildEvents);
}