diff options
| author | Alexander Gavrilov | 2012-05-26 14:49:27 +0400 |
|---|---|---|
| committer | Alexander Gavrilov | 2012-05-26 14:49:27 +0400 |
| commit | e72bf1ac9aa4d9c56f8435c5b86f538c06d651b9 (patch) | |
| tree | 3b463c2c3a32eb9410c06faa75ba9b87b8bed31f /plugins/devel | |
| parent | 8644ea4dc0ec3e40b27a047623b66e56b8dd309b (diff) | |
| download | dfhack-e72bf1ac9aa4d9c56f8435c5b86f538c06d651b9.tar.gz dfhack-e72bf1ac9aa4d9c56f8435c5b86f538c06d651b9.tar.bz2 dfhack-e72bf1ac9aa4d9c56f8435c5b86f538c06d651b9.tar.xz | |
Sync to changes in df-structures.
Diffstat (limited to 'plugins/devel')
| -rw-r--r-- | plugins/devel/counters.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/devel/counters.cpp b/plugins/devel/counters.cpp index 66d8c63a..33294567 100644 --- a/plugins/devel/counters.cpp +++ b/plugins/devel/counters.cpp @@ -25,7 +25,7 @@ command_result df_counters (color_ostream &out, vector <string> & parameters) for (size_t i = 0; i < counters.size(); i++) { auto counter = counters[i]; - out.print("%i (%s): %i\n", counter->id, ENUM_KEY_STR(unit_misc_trait::T_id, counter->id).c_str(), counter->value); + out.print("%i (%s): %i\n", counter->id, ENUM_KEY_STR(misc_trait_type, counter->id).c_str(), counter->value); } return CR_OK; |
