diff options
author | pixel <pixel> | 2003-04-07 22:44:33 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-04-07 22:44:33 +0000 |
commit | c0108c1022ede4743247081f408ca7780095e520 (patch) | |
tree | 217ddb8550e19b52651e26a64eb8df80bfa6b380 /include | |
parent | a099991354e31b55a0d0903ba5755f13aeb43824 (diff) |
Strange bugs...
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 2 | ||||
-rw-r--r-- | include/sprite.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 60c38b6..1e67880 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,5 +1,5 @@ pkginclude_HEADERS = \ engine.h glbase.h glfont.h glshape.h glwidgets.h sprite.h \ -base.h font.h shape.h mcolor.h glsprite.h +base.h font.h shape.h mcolor.h glsprite.h texture.h noinst_HEADERS = gettext.h diff --git a/include/sprite.h b/include/sprite.h index c9e6653..feb9e51 100644 --- a/include/sprite.h +++ b/include/sprite.h @@ -13,7 +13,7 @@ namespace mogltk { Sprite(Handle *, int, int); Sprite(Uint8 *, int, int); virtual ~Sprite(); - void draw(int, int, ColorP = WHITE); + virtual void draw(int, int, ColorP = WHITE); protected: void Bind(); int GetSX(); |