From 1fdf23a4a306ed7ef414acc28ee2765e779446e5 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 21 Mar 2007 21:22:40 +0000 Subject: [PATCH] fix warning --- stepmania/src/ActorFrameTexture.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ActorFrameTexture.cpp b/stepmania/src/ActorFrameTexture.cpp index 63036f19a1..4ff5e13da5 100644 --- a/stepmania/src/ActorFrameTexture.cpp +++ b/stepmania/src/ActorFrameTexture.cpp @@ -20,7 +20,8 @@ ActorFrameTexture::ActorFrameTexture() m_pRenderTarget = NULL; } -ActorFrameTexture::ActorFrameTexture( const ActorFrameTexture &cpy ) +ActorFrameTexture::ActorFrameTexture( const ActorFrameTexture &cpy ): + ActorFrame(cpy) { FAIL_M( "ActorFrameTexture copy not implemented" ); }