summaryrefslogtreecommitdiffhomepage
path: root/Icons.h
diff options
context:
space:
mode:
Diffstat (limited to 'Icons.h')
-rw-r--r--Icons.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Icons.h b/Icons.h
index 367d9aa..3acc8cf 100644
--- a/Icons.h
+++ b/Icons.h
@@ -1,5 +1,6 @@
#pragma once
+#include <string>
#include <unordered_map>
#include <raylib.h>
@@ -13,5 +14,5 @@ public:
void reset();
Texture2D find(long int type);
private:
- std::unordered_map<long int, Texture2D> m_cache;
+ std::unordered_map<std::string, Texture2D> m_cache;
};