From 1a8b5160d105b50f20cb3cc24443b1f41ac6c1af Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Sun, 25 Apr 2010 18:10:15 +0200 Subject: added SDL_Surface* display to all repaint/draw methods --- src/menu/frame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/menu/frame.cpp') diff --git a/src/menu/frame.cpp b/src/menu/frame.cpp index 665a2627..228df767 100644 --- a/src/menu/frame.cpp +++ b/src/menu/frame.cpp @@ -56,8 +56,8 @@ namespace usdx return background; } - void Frame::draw(void) const + void Frame::draw(SDL_Surface* display) const { - background->repaint(); + background->repaint(display); } }; -- cgit v1.2.3