trackgen: fix typo

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9240 30fe4595-0a0c-4342-8851-515496e4dcbd
This commit is contained in:
iobyte 2024-01-10 15:58:35 +00:00
parent 60e40a78bc
commit ea6a9dcb2d
2 changed files with 2 additions and 2 deletions

View File

@ -792,7 +792,7 @@ void Ac3d::Object::write(std::ofstream &fout, bool all) const
if (all && locked)
fout << "locked" << std::endl;
if (all && folded)
fout << "foulded" << std::endl;
fout << "folded" << std::endl;
if (!vertices.empty())
{
fout << "numvert " << vertices.size() << std::endl;

View File

@ -98,7 +98,7 @@ public:
//! Constructor.
Application::Application()
: GfApplication("TrackGen", "1.6.0.35", "Terrain generator for tracks")
: GfApplication("TrackGen", "1.6.0.36", "Terrain generator for tracks")
, HeightSteps(30)
, Bump(false)
, Raceline(false)