From cfc8e46a999b0209424caf20336d4560113d227e Mon Sep 17 00:00:00 2001 From: Lynix Date: Wed, 7 Aug 2013 11:03:48 +0200 Subject: [PATCH] Fixed search and replace problem :D Former-commit-id: eb57fa9bb8bee5c7b6bb1331f527049ac765c24a --- src/Nazara/Renderer/DebugDrawer.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Nazara/Renderer/DebugDrawer.cpp b/src/Nazara/Renderer/DebugDrawer.cpp index 7c1cd254d..be5c70abe 100644 --- a/src/Nazara/Renderer/DebugDrawer.cpp +++ b/src/Nazara/Renderer/DebugDrawer.cpp @@ -52,7 +52,7 @@ void NzDebugDrawer::Draw(const NzBoxf& box) { if (!s_initialized) { - NazaraError("Debug drawer is not s_initialized"); + NazaraError("Debug drawer is not initialized"); return; } @@ -143,7 +143,7 @@ void NzDebugDrawer::Draw(const NzFrustumf& frustum) { if (!s_initialized) { - NazaraError("Debug drawer is not s_initialized"); + NazaraError("Debug drawer is not initialized"); return; } @@ -225,7 +225,7 @@ void NzDebugDrawer::Draw(const NzOrientedBoxf& orientedBox) { if (!s_initialized) { - NazaraError("Debug drawer is not s_initialized"); + NazaraError("Debug drawer is not initialized"); return; } @@ -307,7 +307,7 @@ void NzDebugDrawer::Draw(const NzSkeleton* skeleton) { if (!s_initialized) { - NazaraError("Debug drawer is not s_initialized"); + NazaraError("Debug drawer is not initialized"); return; } @@ -358,7 +358,7 @@ void NzDebugDrawer::DrawBinormals(const NzStaticMesh* subMesh) { if (!s_initialized) { - NazaraError("Debug drawer is not s_initialized"); + NazaraError("Debug drawer is not initialized"); return; } @@ -405,7 +405,7 @@ void NzDebugDrawer::DrawNormals(const NzStaticMesh* subMesh) { if (!s_initialized) { - NazaraError("Debug drawer is not s_initialized"); + NazaraError("Debug drawer is not initialized"); return; } @@ -452,7 +452,7 @@ void NzDebugDrawer::DrawTangents(const NzStaticMesh* subMesh) { if (!s_initialized) { - NazaraError("Debug drawer is not s_initialized"); + NazaraError("Debug drawer is not initialized"); return; }