Should fix shadowing warnings with gcc.

svn-id: r23520
This commit is contained in:
Johannes Schickel 2006-07-15 21:27:29 +00:00
parent b09b9b216e
commit db58d3477b

View File

@ -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;