summaryrefslogtreecommitdiff
path: root/rotord/rotor.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-07-03 03:04:47 +0100
committerComment <tim@gray.(none)>2013-07-03 03:04:47 +0100
commit379251337ac5806cf98047c3fc308d932b1aefab (patch)
tree5ff932df86fec52543541129db7825a1c1e50934 /rotord/rotor.h
parentd77afa02389ecaf1858c94e80530345610907a28 (diff)
found a major bug in render timeline
Diffstat (limited to 'rotord/rotor.h')
-rwxr-xr-xrotord/rotor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rotord/rotor.h b/rotord/rotor.h
index ae17e9a..92d6e45 100755
--- a/rotord/rotor.h
+++ b/rotord/rotor.h
@@ -1178,9 +1178,9 @@ namespace Rotor {
};
class Graph{
public:
- Graph(){duration=10.0f;loaded = false;outW=640;outH=360;};
+ Graph(){duration=5.0f;loaded = false;outW=640;outH=360;};
Graph(const string& _uid,const string& _desc){init(_uid,_desc);};
- void init(const string& _uid,const string& _desc){ uid=_uid;description=_desc;duration=10.0f;};
+ void init(const string& _uid,const string& _desc){ uid=_uid;description=_desc;duration=5.0f;};
string uid; //every version of a graph has a UUID, no particular need to actually read its data(?)
//?? is it faster than using strings??
string description;