File diff r21405:f2833213c8e9 → r21406:a92ce8024212
src/script/script_config.cpp
Show inline comments
 
@@ -197,10 +197,10 @@ void ScriptConfig::SettingsToString(char
 
		/* If it doesn't fit, skip the next settings */
 
		if (string + needed_size > last) break;
 

	
 
		s = strecat(s, last, (*it).first);
 
		s = strecat(s, last, "=");
 
		s = strecat(s, last, no);
 
		s = strecat(s, last, ",");
 
		s = strecat(s, (*it).first, last);
 
		s = strecat(s, "=", last);
 
		s = strecat(s, no, last);
 
		s = strecat(s, ",", last);
 
	}
 

	
 
	/* Remove the last ',', but only if at least one setting was saved. */