diff options
author | Vincent Bénony | 2016-01-06 11:38:42 +0100 |
---|---|---|
committer | Vincent Bénony | 2016-01-06 16:20:31 +0100 |
commit | 40373d80a6d248e90eec7fe50c13b1a1f9041cc0 (patch) | |
tree | 021fc4cb89d9cde7062532fcce275f8ae79a263c | |
parent | 56f6ac5f6e232e02e39e377e3bb31bf94181ec74 (diff) | |
download | scummvm-rg350-40373d80a6d248e90eec7fe50c13b1a1f9041cc0.tar.gz scummvm-rg350-40373d80a6d248e90eec7fe50c13b1a1f9041cc0.tar.bz2 scummvm-rg350-40373d80a6d248e90eec7fe50c13b1a1f9041cc0.zip |
DEVTOOL: Fixes a typo
-rw-r--r-- | devtools/create_project/xcode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp index 5c8b773e83..d4c23ea3bd 100644 --- a/devtools/create_project/xcode.cpp +++ b/devtools/create_project/xcode.cpp @@ -1130,7 +1130,7 @@ std::string XcodeProvider::writeProperty(const std::string &variable, Property & output += writeSetting(setting->first, setting->second); - // The combination of SettingsAsList, and kSettingsSingleItem should use "," and not ";" (i.e children + // The combination of kSettingsAsList, and kSettingsSingleItem should use "," and not ";" (i.e children // in PBXGroup, so we special case that case here. if ((prop._flags & kSettingsAsList) && (prop._settings.size() > 1 || (prop._flags & kSettingsSingleItem))) { output += (prop._settings.size() > 0) ? ",\n" : "\n"; |