From 0b4be6c6f17ed5af7622ec31f4ac1c34193ca3e9 Mon Sep 17 00:00:00 2001 From: sebas77 Date: Tue, 22 Jan 2019 15:09:54 +0000 Subject: [PATCH] fix compilation error --- Svelto.ECS/EnginesRoot.Engines.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Svelto.ECS/EnginesRoot.Engines.cs b/Svelto.ECS/EnginesRoot.Engines.cs index e8a2bc3..4aa6936 100644 --- a/Svelto.ECS/EnginesRoot.Engines.cs +++ b/Svelto.ECS/EnginesRoot.Engines.cs @@ -67,7 +67,7 @@ namespace Svelto.ECS catch (Exception e) { #if !DEBUG - throw new ECSException("Code crashed while adding engine ".FastConcat(engine.GetType()), e); + throw new ECSException("Code crashed while adding engine ".FastConcat(engine.GetType().ToString()), e); #else Console.LogException("Code crashed while adding engine ".FastConcat(engine.GetType().ToString()), e); #endif