Skip to content

Commit

Permalink
Fix option desc
Browse files Browse the repository at this point in the history
  • Loading branch information
grunt-lucas committed Oct 12, 2023
1 parent ee0d3e0 commit fcfeadf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cli_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const std::string DEFAULT_ENCOUNTER_TYPE = "default-encounter-type";
const std::string DEFAULT_ENCOUNTER_TYPE_DESC =
" -" + DEFAULT_ENCOUNTER_TYPE + "=<TYPE>\n"
" Select the default encounter type for metatiles that do not have an entry in the\n"
" 'attributes.csv' file. You may use either a raw integral value or an encounter type\n"
" 'attributes.csv' file. You may use either a raw integral value or an EncounterType\n"
" label defined in the 'include/global.fieldmap.h' file. If unspecified, defaults to\n"
" '0'.\n";
constexpr int DEFAULT_ENCOUNTER_TYPE_VAL = 2004;
Expand All @@ -110,7 +110,7 @@ const std::string DEFAULT_TERRAIN_TYPE = "default-terrain-type";
const std::string DEFAULT_TERRAIN_TYPE_DESC =
" -" + DEFAULT_TERRAIN_TYPE + "=<TYPE>\n"
" Select the default terrain type for metatiles that do not have an entry in the\n"
" 'attributes.csv' file. You may use either a raw integral value or an terrain type\n"
" 'attributes.csv' file. You may use either a raw integral value or an TerrainType\n"
" label defined in the 'include/global.fieldmap.h' file. If unspecified, defaults to\n"
" '0'.\n";
constexpr int DEFAULT_TERRAIN_TYPE_VAL = 2005;
Expand Down

0 comments on commit fcfeadf

Please sign in to comment.