Browse Source

fix compilation error

tags/2.7
sebas77 5 years ago
parent
commit
0b4be6c6f1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Svelto.ECS/EnginesRoot.Engines.cs

+ 1
- 1
Svelto.ECS/EnginesRoot.Engines.cs View File

@@ -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


Loading…
Cancel
Save