summary refs log tree commit diff stats
path: root/src/renderer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer.h')
-rw-r--r--src/renderer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/renderer.h b/src/renderer.h index 75bd9fe..82d34a5 100644 --- a/src/renderer.h +++ b/src/renderer.h
@@ -12,6 +12,7 @@
12class Game; 12class Game;
13class Map; 13class Map;
14class Sprite; 14class Sprite;
15class Menu;
15 16
16class sdl_error : public std::logic_error { 17class sdl_error : public std::logic_error {
17public: 18public:
@@ -135,7 +136,7 @@ private:
135 std::map<std::string, int> filenameToTexId_; 136 std::map<std::string, int> filenameToTexId_;
136 137
137 // Menu rendering 138 // Menu rendering
138 void renderMenu(Game& game); 139 void renderMenu(Game& game, const Menu& menu);
139 140
140 texture_ptr menuTex_; 141 texture_ptr menuTex_;
141 142