From fca8dc49e9e12e2529b3f9bbda610174c0e0d47e Mon Sep 17 00:00:00 2001 From: Lynix Date: Wed, 18 Mar 2015 13:04:12 +0100 Subject: [PATCH] (TextSprite) Changed error message Former-commit-id: f32804aca320bbfc3c6ecb5e0e3747b7b9d09369 --- src/Nazara/Graphics/TextSprite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nazara/Graphics/TextSprite.cpp b/src/Nazara/Graphics/TextSprite.cpp index e0c9a632d..4259035a6 100644 --- a/src/Nazara/Graphics/TextSprite.cpp +++ b/src/Nazara/Graphics/TextSprite.cpp @@ -373,7 +373,7 @@ void NzTextSprite::OnAtlasReleased(const NzAbstractAtlas* atlas, void* userdata) #endif // L'atlas a été libéré alors que le TextSprite l'utilisait encore, notre seule option (pour éviter un crash) est de nous réinitialiser - NazaraWarning("TextSprite " + NzString::Pointer(this) + " has been cleared because atlas " + NzString::Pointer(atlas) + " that was under use has been released"); + NazaraWarning("TextSprite " + NzString::Pointer(this) + " has been cleared because atlas " + NzString::Pointer(atlas) + " has been released"); Clear(); }