diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-28 16:23:53 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-04-28 16:34:06 -0400 |
commit | 0ce4481a6e9dc318b4fed0f4643de892917be77c (patch) | |
tree | def791a12a98b78a704c5f3d91c4ac00e2eacd33 /tools/mapjson/mapjson.cpp | |
parent | a1136ea0f9676981b5be1aa5cfbe4375e2ed5b14 (diff) |
Name map groups
Diffstat (limited to 'tools/mapjson/mapjson.cpp')
-rwxr-xr-x | tools/mapjson/mapjson.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mapjson/mapjson.cpp b/tools/mapjson/mapjson.cpp index baa93233b..5d5a05bbc 100755 --- a/tools/mapjson/mapjson.cpp +++ b/tools/mapjson/mapjson.cpp @@ -373,7 +373,7 @@ string generate_map_constants_text(string groups_filepath, Json groups_data) { int group_num = 0; for (auto &group : groups_data["group_order"].array_items()) { - text << "// Map Group " << group_num << "\n"; + text << "// " << group.string_value() << "\n"; vector<Json> map_ids; size_t max_length = 0; |