Skip to content

Commit

Permalink
Remove Lenticula location in favor of Lobus
Browse files Browse the repository at this point in the history
Lenticula was removed in 2019 and it wasn't used.
  • Loading branch information
375gnu committed Nov 6, 2023
1 parent 66a0515 commit e64b703
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/celengine/location.gperf
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ struct FeatureNameEntry { const char* name; Location::FeatureType featureType; }
"LC", Location::Lacus
"LF", Location::LandingSite
"LG", Location::LargeRinged
"LE", Location::Lenticula
"LI", Location::Linea
"LN", Location::Lingula
"LO", Location::Lobus
"MA", Location::Macula
"ME", Location::Mare
"MN", Location::Mensa
Expand Down
2 changes: 1 addition & 1 deletion src/celengine/location.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ class Location
Lacuna = 0x0000020000000000,
Lacus = 0x0000040000000000,
LargeRinged = 0x0000080000000000,
Lenticula = 0x0000100000000000,
Lingula = 0x0000200000000000,
Lobus = 0x0000100000000000, // Lobus uses value of removed Lenticula
Macula = 0x0000400000000000,
Oceanus = 0x0000800000000000,
Palus = 0x0001000000000000,
Expand Down
2 changes: 1 addition & 1 deletion src/celscript/common/scriptmaps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ void initLocationFlagMap(FlagMap64 &LocationFlagMap)
LocationFlagMap["lacuna"sv] = Location::Lacuna;
LocationFlagMap["lacus"sv] = Location::Lacus;
LocationFlagMap["largeringed"sv] = Location::LargeRinged;
LocationFlagMap["lenticula"sv] = Location::Lenticula;
LocationFlagMap["lingula"sv] = Location::Lingula;
LocationFlagMap["lobus"sv] = Location::Lobus;
LocationFlagMap["macula"sv] = Location::Macula;
LocationFlagMap["oceanus"sv] = Location::Oceanus;
LocationFlagMap["palus"sv] = Location::Palus;
Expand Down

0 comments on commit e64b703

Please sign in to comment.