From 3f253fda65acef7e9c0ef6ef1f5e4f8bd8609275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Wed, 20 Apr 2016 17:01:25 +0200 Subject: [PATCH] Correction type d'indexation des caches du gestionnaire de ressources --- include/resource_manager.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/resource_manager.hpp b/include/resource_manager.hpp index 40add4b..b669c9f 100644 --- a/include/resource_manager.hpp +++ b/include/resource_manager.hpp @@ -24,12 +24,12 @@ private: boost::filesystem::path musics_path; std::unordered_map< - boost::filesystem::path, + std::string, std::shared_ptr > images_cache; std::unordered_map< - boost::filesystem::path, + std::string, std::shared_ptr > textures_cache;