aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/frame_background_color.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/menu/frame_background_color.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/menu/frame_background_color.hpp b/src/menu/frame_background_color.hpp
index d1fdcc17..a52e1f13 100644
--- a/src/menu/frame_background_color.hpp
+++ b/src/menu/frame_background_color.hpp
@@ -27,6 +27,8 @@
#ifndef FRAME_BACKGROUND_COLOR_HPP
#define FRAME_BACKGROUND_COLOR_HPP
+#include <SDL/SDL.h>
+
#include "frame_background.hpp"
#include "utils/rgb_color.hpp"
@@ -38,7 +40,7 @@ namespace usdx
RgbColor color;
protected:
- virtual void draw(void) const;
+ virtual void draw(SDL_Surface* display) const;
public:
FrameBackgroundColor(RgbColor &color);