Bugfix, the gravity was not read correctly from .track files.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1508 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2008-02-17 22:35:17 +00:00
parent f7ab0ed91f
commit 39be9a9f67

View File

@ -825,7 +825,7 @@ void Track::loadTrack(std::string filename_)
LISP->get ("sun-ambient", m_ambient_col);
LISP->get ("sun-specular", m_specular_col);
LISP->get ("sun-diffuse", m_diffuse_col);
LISP->get ("m_gravity", m_gravity);
LISP->get ("gravity", m_gravity);
delete ROOT;
}