summaryrefslogtreecommitdiff
path: root/src/game/GameView.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-09-30 15:26:05 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-09-30 15:26:05 (GMT)
commit68a32aa37607333d3d9a4ddb202a73cc01993000 (patch)
tree378d0c20bbf77b95007d8508e04c0dd308b72b86 /src/game/GameView.h
parent70174bff47432a3b63335b8205623757361d3191 (diff)
downloadpowder-68a32aa37607333d3d9a4ddb202a73cc01993000.zip
powder-68a32aa37607333d3d9a4ddb202a73cc01993000.tar.gz
Pass points by value for drawing tools
Diffstat (limited to 'src/game/GameView.h')
-rw-r--r--src/game/GameView.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/GameView.h b/src/game/GameView.h
index 7fb5794..7c77dc0 100644
--- a/src/game/GameView.h
+++ b/src/game/GameView.h
@@ -62,7 +62,7 @@ private:
std::string infoTip;
int toolTipPresence;
- queue<ui::Point*> pointQueue;
+queue<ui::Point> pointQueue;
GameController * c;
Renderer * ren;
Brush * activeBrush;