diff options
Diffstat (limited to 'src/resources/db/palettedb.cpp')
-rw-r--r-- | src/resources/db/palettedb.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/db/palettedb.cpp b/src/resources/db/palettedb.cpp index a3c1fe4a4..cc27fa292 100644 --- a/src/resources/db/palettedb.cpp +++ b/src/resources/db/palettedb.cpp @@ -115,7 +115,8 @@ void PaletteDB::unload() const DyeColor *PaletteDB::getColor(const std::string &name) { - std::map<std::string, DyeColor>::const_iterator it = mColors.find(name); + const std::map<std::string, DyeColor>::const_iterator it = + mColors.find(name); if (it != mColors.end()) return &(*it).second; else |