Fixed saving of which addons are installed.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@7539 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2011-01-25 07:13:21 +00:00
parent 66a9769a14
commit ce2e997ab4

View File

@@ -80,7 +80,8 @@ void Addon::writeXML(std::ofstream *out_stream)
(*out_stream) << " <" << m_type
<< " name=\"" << m_name
<< "\" id=\"" << m_id
<< "\" installed=\"" << m_installed
<< "\" installed=\""
<< (m_installed ? "true" : "false" )
<< "\" installed-version=\"" << m_installed_version
<<"\" icon-version=\"" << m_icon_version
<< "\"/>\n";