Skip to content

Commit

Permalink
Capped VS standalone framerate to 60fps.
Browse files Browse the repository at this point in the history
  • Loading branch information
prisonerjohn committed Nov 21, 2013
1 parent 7cde3eb commit 67d1b13
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion VSOpenP5Fifteen/src/testApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

//--------------------------------------------------------------
void testApp::setup(){
vs.setup();
ofSetVerticalSync(true);
ofSetFrameRate(60);

vs.setup();
vs.playSystem();
}

Expand Down
3 changes: 3 additions & 0 deletions VSOpenP5SeaOfLines/src/testApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

//--------------------------------------------------------------
void testApp::setup(){
ofSetVerticalSync(true);
ofSetFrameRate(60);

vs.setup();
vs.playSystem();
}
Expand Down
3 changes: 3 additions & 0 deletions VSRipples/src/testApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

//--------------------------------------------------------------
void testApp::setup(){
ofSetVerticalSync(true);
ofSetFrameRate(60);

vs.setup();
vs.playSystem();
}
Expand Down

0 comments on commit 67d1b13

Please sign in to comment.