summaryrefslogtreecommitdiff
path: root/src/game/GameController.cpp
diff options
context:
space:
mode:
authorjacob1 <jfu614@gmail.com>2012-12-19 04:56:41 (GMT)
committer jacob1 <jfu614@gmail.com>2012-12-19 04:56:41 (GMT)
commita91459916d016d1e10708373f44c116bb77eb407 (patch)
tree27ce9d7659b69f5bc459ac48d327113efb01c6af /src/game/GameController.cpp
parente302a07694c3b967983a017eac2b6b3281ad1541 (diff)
downloadpowder-a91459916d016d1e10708373f44c116bb77eb407.zip
powder-a91459916d016d1e10708373f44c116bb77eb407.tar.gz
change max to 200, 500 was a bit large
Diffstat (limited to 'src/game/GameController.cpp')
-rw-r--r--src/game/GameController.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/GameController.cpp b/src/game/GameController.cpp
index af5c962..373388d 100644
--- a/src/game/GameController.cpp
+++ b/src/game/GameController.cpp
@@ -298,10 +298,10 @@ void GameController::AdjustBrushSize(int direction, bool logarithmic, bool xAxis
newSize.X = 0;
if(newSize.Y < 0)
newSize.Y = 0;
- if(newSize.X > 500)
- newSize.X = 500;
- if(newSize.Y > 500)
- newSize.Y = 500;
+ if(newSize.X > 200)
+ newSize.X = 200;
+ if(newSize.Y > 200)
+ newSize.Y = 200;
if(xAxis)
gameModel->GetBrush()->SetRadius(ui::Point(newSize.X, oldSize.Y));