Fix renderer compiling
This commit is contained in:
parent
a31f4df0a1
commit
beff8e73ba
@ -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;
|
||||
|
@ -77,7 +77,7 @@ private:
|
||||
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;
|
||||
|
Reference in New Issue
Block a user