From 80e66901e7de151b921382a512cdd1292bc0e2d7 Mon Sep 17 00:00:00 2001 From: Ranveer Aggarwal Date: Fri, 3 Oct 2014 18:50:44 +0530 Subject: [PATCH] Optimusified! --- control.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/control.cpp b/control.cpp index 3e4b952..1b165ac 100644 --- a/control.cpp +++ b/control.cpp @@ -33,12 +33,12 @@ void control(int key, int scancode, int action, int mods) { if((action == GLFW_PRESS || action == GLFW_REPEAT) && mods == 0) { transformed = !transformed; if(transformed) { - b->count_transform = 200; - b->count_elbows_in = 100; + b->count_transform = 2000; + b->count_elbows_in = 1000; } else { - b->count_revert = 200; - b->count_elbows_out = 100; + b->count_revert = 2000; + b->count_elbows_out = 1000; } //active = "camera"; }