From 33f0c55e8c7897a4179fb7b44f8d82d7803bdf0d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 21 Feb 2007 05:42:55 +0000 Subject: [PATCH] default unique name --- stepmania/src/ActorFrameTexture.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/ActorFrameTexture.cpp b/stepmania/src/ActorFrameTexture.cpp index 085cb21c4c..c3cf3fb27e 100644 --- a/stepmania/src/ActorFrameTexture.cpp +++ b/stepmania/src/ActorFrameTexture.cpp @@ -12,6 +12,9 @@ ActorFrameTexture::ActorFrameTexture() m_bDepthBuffer = false; m_bAlphaBuffer = false; m_bPreserveTexture = false; + static uint64_t i = 0; + ++i; + m_sTextureName = ssprintf( ConvertI64FormatString("ActorFrameTexture %lli"), i ); m_pRenderTarget = NULL; }