diff options
Diffstat (limited to 'src/imagesprite.h')
-rw-r--r-- | src/imagesprite.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/imagesprite.h b/src/imagesprite.h index 21705c812..9dad0f743 100644 --- a/src/imagesprite.h +++ b/src/imagesprite.h @@ -22,12 +22,6 @@ #ifndef IMAGESPRITE_H #define IMAGESPRITE_H -#ifdef __GNUC__ -#define A_UNUSED __attribute__ ((unused)) -#else -#define A_UNUSED -#endif - #include "sprite.h" #include "resources/image.h" @@ -73,6 +67,9 @@ public: unsigned int getFrameCount() const { return 1; } + bool updateNumber(unsigned num A_UNUSED) + { return false; } + private: Image *mImage; }; |