Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
grunt-lucas committed Aug 29, 2023
1 parent 7c84b0e commit 7dc5362
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/cli_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const std::string TRANSPARENCY_COLOR_DESC =
constexpr int TRANSPARENCY_COLOR_VAL = 2002;

const std::string PAL_ASSIGN_CUTOFF = "palette-assign-cutoff";
const std::string PAL_ASSIGN_CUTOFF =
const std::string PAL_ASSIGN_CUTOFF_DESC =
" -" + PAL_ASSIGN_CUTOFF + "=<FACTOR>\n"
" Select the cutoff FACTOR for palette assignment tree node exploration. Defaults to 2,\n"
" which should be sufficient for most cases. Increase the number to let the algorithm\n"
Expand Down
2 changes: 1 addition & 1 deletion src/cli_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ TILES_OUTPUT_PAL_DESC + "\n" +
TARGET_BASE_GAME_DESC + "\n" +
DUAL_LAYER_DESC + "\n" +
TRANSPARENCY_COLOR_DESC + "\n" +
PAL_ASSIGN_CUTOFF + "\n" +
PAL_ASSIGN_CUTOFF_DESC + "\n" +
" Fieldmap Override Options\n" +
TILES_PRIMARY_OVERRIDE_DESC + "\n" +
TILES_TOTAL_OVERRIDE_DESC + "\n" +
Expand Down

0 comments on commit 7dc5362

Please sign in to comment.