Skip to content

Commit

Permalink
fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
mmbelkiman committed Mar 11, 2019
1 parent f095ad3 commit d2f6145
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Core/ParticleEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static ParticleEffect ReadFromJsonFile(string filePath, GraphicsDevice gr
}
catch (Exception e)
{
Console.WriteLine("Venus Particle Engine : ParticleEffect => " + e.Message);
Console.WriteLine("Venus Particle Engine : ParticleEffect (ReadFromJsonFile) => " + e.Message);
return null;
}
finally
Expand Down Expand Up @@ -123,7 +123,7 @@ private Texture2D LoadImageXNB(string fileName, ContentManager content)
}
catch
{
Console.WriteLine("Cannot open file " + fileName);
Console.WriteLine("LoadImageXNB Cannot open file " + fileName);
throw new FileNotFoundException("Cannot open file", fileName);
}

Expand All @@ -142,7 +142,7 @@ private Texture2D LoadImageNormal(string fileName, GraphicsDevice graphicsDevice
}
catch
{
Console.WriteLine("Cannot open file " + fileName);
Console.WriteLine("LoadImageNormal Cannot open file " + fileName);
throw new FileNotFoundException("Cannot open file", fileName);
}
return spriteAtlas;
Expand Down

0 comments on commit d2f6145

Please sign in to comment.