From 722fba5d0c0876730636e4ba361833ae52f612ee Mon Sep 17 00:00:00 2001 From: Lynix Date: Sat, 17 Jan 2015 22:47:03 +0100 Subject: [PATCH] Fixed compilation error Former-commit-id: a88d418a78a1fed1606064898f4f191a3ac9ca53 --- src/Nazara/Graphics/Graphics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nazara/Graphics/Graphics.cpp b/src/Nazara/Graphics/Graphics.cpp index 8ee1cf1c8..0048404ad 100644 --- a/src/Nazara/Graphics/Graphics.cpp +++ b/src/Nazara/Graphics/Graphics.cpp @@ -68,7 +68,7 @@ bool NzGraphics::Initialize() NzRenderTechniques::Register(NzRenderTechniques::ToString(nzRenderTechniqueType_DeferredShading), 20, []() -> NzAbstractRenderTechnique* { return new NzDeferredRenderTechnique; }); } - NzFont::SetDefaultAtlas(new NzGuillotineTextureAtlas); + NzFont::SetDefaultAtlas(std::make_shared()); onExit.Reset();