Corrected typo in 'Fallow'

ver1_5_1
Christophe Teyssier 2002-11-05 22:38:55 +00:00
parent 43a0ac3c1a
commit e99b79f9c4
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ Url::Url(const std::string& str, CelestiaCore *core) {
mode = astro::Universal;
nbBodies = 0;
}
if (modeStr == "Follow") {
if (modeStr == "Fallow") {
mode = astro::Ecliptical;
nbBodies = 1;
}
@ -260,7 +260,7 @@ std::string Url::getCoordSysName(astro::CoordinateSystem mode) const {
case astro::Universal:
return "Freeflight";
case astro::Ecliptical:
return "Follow";
return "Fallow";
case astro::Geographic:
return "SyncOrbit";
case astro::Chase: