From: Matt Mullins Date: Sat, 16 Jun 2012 06:46:53 +0000 (-0700) Subject: Matt committed code that didn't compile. Fixed. X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;ds=sidebyside;p=IvanGame.git Matt committed code that didn't compile. Fixed. --- diff --git a/Animation.h b/Animation.h index dca4577..33f4615 100644 --- a/Animation.h +++ b/Animation.h @@ -19,11 +19,11 @@ class Animation { public: /// Tells if loading the Animation was successful - int mBuilt, + int mBuilt; /// Number of frames in this Animation - mNumFrames, + int mNumFrames; /// Animation's current width - int mW, + int mW; /// The animation's current Height int mH; std::vector Frames; diff --git a/Level.h b/Level.h index 8ddb904..93bfc84 100644 --- a/Level.h +++ b/Level.h @@ -225,7 +225,7 @@ protected: // allow inheritance /// Textures that have been loaded by the level. map mTextures; /// List of sprites that should be added this game loop - vector ToAdd + vector ToAdd; /// List of sprites that should die after this game loop vector ToRemove; /// List of all the fonts we have