From db58d3477b7b79774bc1fba3e19cec4080548978 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sat, 15 Jul 2006 21:27:29 +0000 Subject: Should fix shadowing warnings with gcc. svn-id: r23520 --- engines/sword2/animation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sword2/animation.h b/engines/sword2/animation.h index 0a937d48df..cda279e6ab 100644 --- a/engines/sword2/animation.h +++ b/engines/sword2/animation.h @@ -43,7 +43,7 @@ struct MovieTextObject { }; struct MovieInfo { - MovieInfo(const char *name, const uint frames, const bool seamless) : name(name), frames(frames), seamless(seamless) {} + MovieInfo(const char *name_, const uint frames_, const bool seamless_) : name(name_), frames(frames_), seamless(seamless_) {} const char *name; const uint frames; -- cgit v1.2.3