summaryrefslogtreecommitdiffstats
path: root/Project/Transformer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Project/Transformer.cpp')
-rw-r--r--Project/Transformer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/Transformer.cpp b/Project/Transformer.cpp
index 04770e4..42fffaf 100644
--- a/Project/Transformer.cpp
+++ b/Project/Transformer.cpp
@@ -172,7 +172,7 @@ void Transformer::Rotate(bool clockwise)
if(!clockwise) rotAngle = -m_rotationAngle;
m_angle += rotAngle;
- if(m_angle >= 360.0) m_angle = 0.0;
+ if(m_angle >= 360 || m_angle <= -360) m_angle = 0.0;
// Rotate all the points, except the switches and buses points.
for(int i = 2; i < (int)m_pointList.size() - 2; i++) {