Skip to content

Commit

Permalink
Fix printing of boolean parameters in --cat/--fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mmp committed Jan 26, 2018
1 parent 188d173 commit 55a041c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/paramset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ static void printItems(

void ParamSet::Print(int indent) const {
printItems("integer", indent, ints);
printItems("boolean", indent, bools);
printItems("bool", indent, bools);
printItems("float", indent, floats);
printItems("point2", indent, point2fs);
printItems("vector2", indent, vector2fs);
Expand Down

0 comments on commit 55a041c

Please sign in to comment.