aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/frame_background.hpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-04-25 18:10:15 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:47 +0100
commit1a8b5160d105b50f20cb3cc24443b1f41ac6c1af (patch)
treece1bb575c9e934cd97858c6c5e2793c4427778ee /src/menu/frame_background.hpp
parent647660014b2f506d19c4feedc06a45b514035d5b (diff)
downloadusdx-1a8b5160d105b50f20cb3cc24443b1f41ac6c1af.tar.gz
usdx-1a8b5160d105b50f20cb3cc24443b1f41ac6c1af.tar.xz
usdx-1a8b5160d105b50f20cb3cc24443b1f41ac6c1af.zip
added SDL_Surface* display to all repaint/draw methods
Diffstat (limited to 'src/menu/frame_background.hpp')
-rw-r--r--src/menu/frame_background.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/menu/frame_background.hpp b/src/menu/frame_background.hpp
index e815094a..a8e7daea 100644
--- a/src/menu/frame_background.hpp
+++ b/src/menu/frame_background.hpp
@@ -51,7 +51,7 @@ namespace usdx
FrameBackground(const FrameBackground&);
FrameBackground& operator=(const FrameBackground&);
- virtual void draw(void) = 0;
+ virtual void draw(SDL_Surface* display) = 0;
};
};