Skip to content

Commit

Permalink
Fix renderer compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonmj committed Nov 9, 2014
1 parent a31f4df commit beff8e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gui/game/GameView.cpp
Expand Up @@ -2076,7 +2076,7 @@ void GameView::OnDraw()
{
int startX = 20;
int startY = YRES-20;
deque<std::pair<std::string, int>>::iterator iter;
deque<std::pair<std::string, int> >::iterator iter;
for(iter = logEntries.begin(); iter != logEntries.end(); iter++)
{
string message = (*iter).first;
Expand Down
2 changes: 1 addition & 1 deletion src/gui/game/GameView.h
Expand Up @@ -77,7 +77,7 @@ class GameView: public ui::Window
vector<ui::Button*> menuButtons;
vector<ToolButton*> toolButtons;
vector<ui::Component*> notificationComponents;
deque<std::pair<std::string, int>> logEntries;
deque<std::pair<std::string, int> > logEntries;
ui::Button * scrollBar;
ui::Button * searchButton;
ui::Button * reloadButton;
Expand Down

0 comments on commit beff8e7

Please sign in to comment.