diff options
| author | Tim Redfern <tim@getdrop.com> | 2017-09-12 20:41:31 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2017-09-12 20:41:31 +0100 |
| commit | 304c8f22dfb4e068685b2a1e1023129a7cd12eb4 (patch) | |
| tree | 31f8b9c837e1234e171283cc7f63339dd6ad3d22 /gui/src/ofApp.cpp | |
| parent | d68b8424c8e63cb84147d021608fe5a69b30b288 (diff) | |
threading not finished
Diffstat (limited to 'gui/src/ofApp.cpp')
| -rw-r--r-- | gui/src/ofApp.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/src/ofApp.cpp b/gui/src/ofApp.cpp index a264f83..2e8fe90 100644 --- a/gui/src/ofApp.cpp +++ b/gui/src/ofApp.cpp @@ -47,13 +47,12 @@ void ofApp::update(){ strm << "fps: " << ofGetFrameRate(); ofSetWindowTitle(strm.str()); - } void ofApp::updateOutput(ofEventArgs & args){ for (int i=0;i<sets.size();i++){ - sets[i].update(); + sets[i].updateOutput(); } } |
