From c25f824f65803f057e9d5ab1f2a1c084fb52e07c Mon Sep 17 00:00:00 2001 From: Lynix Date: Mon, 30 Mar 2015 14:17:25 +0200 Subject: [PATCH] (NDK) Fixed compilation error Former-commit-id: c762dbf34c0141882df0ce43509277877c5c559e --- SDK/include/NDK/BaseComponent.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDK/include/NDK/BaseComponent.inl b/SDK/include/NDK/BaseComponent.inl index 301060a4c..e090b746e 100644 --- a/SDK/include/NDK/BaseComponent.inl +++ b/SDK/include/NDK/BaseComponent.inl @@ -48,7 +48,7 @@ namespace Ndk entry.id = id; // Une petite assertion pour s'assurer que l'identifiant n'est pas déjà utilisé - NazaraAssert(s_idToInsert.find(id) == s_idToInsert.end(), "This id is already in use"); + NazaraAssert(s_idToIndex.find(id) == s_idToIndex.end(), "This id is already in use"); s_idToIndex[id] = index;