aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'graphics')
-rw-r--r--graphics/fontman.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/fontman.h b/graphics/fontman.h
index fb73286e3d..443587ca7c 100644
--- a/graphics/fontman.h
+++ b/graphics/fontman.h
@@ -27,6 +27,7 @@
#include "common/singleton.h"
#include "common/str.h"
#include "common/hashmap.h"
+#include "common/hash-str.h"
#include "graphics/font.h"
@@ -81,7 +82,7 @@ private:
friend class Common::Singleton<SingletonBaseType>;
FontManager();
- Common::HashMap<Common::String, const Font *> _fontMap;
+ Common::HashMap<Common::String, const Font *, Common::CaseSensitiveString_Hash, Common::CaseSensitiveString_EqualTo> _fontMap;
};