From 34d0467f6f158a5a814d1deda76a964bfc454826 Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Sat, 31 Jan 2009 23:14:33 +0000 Subject: [PATCH] Remove virtual function call in image --- src/Image.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Image.hpp b/src/Image.hpp index 7278bbd..0db9725 100644 --- a/src/Image.hpp +++ b/src/Image.hpp @@ -26,8 +26,8 @@ public: Image(const char* file); virtual ~Image(); - virtual void Draw(int x, int y, double rotate=0.0, double scale=1.0, - double alpha=1.0, double white=1.0) const; + void Draw(int x, int y, double rotate=0.0, double scale=1.0, + double alpha=1.0, double white=1.0) const; }; #endif -- 2.39.2