aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/frame.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/menu/frame.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/menu/frame.hpp b/src/menu/frame.hpp
index e71bef9b..b337275c 100644
--- a/src/menu/frame.hpp
+++ b/src/menu/frame.hpp
@@ -27,6 +27,8 @@
#ifndef FRAME_HPP
#define FRAME_HPP
+#include <SDL/SDL.h>
+
#include "container.hpp"
#include "frame_background.hpp"
@@ -38,7 +40,7 @@ namespace usdx
FrameBackground* background;
protected:
- virtual void draw(void) const;
+ virtual void draw(SDL_Surface* display) const;
public:
Frame(Control* parent);