diff options
| author | tim <tim@eclectronics.org> | 2017-03-28 23:22:55 +0100 |
|---|---|---|
| committer | tim <tim@eclectronics.org> | 2017-03-28 23:22:55 +0100 |
| commit | 8d671c4c77f41b0991fb6005d24736dccbe36cfd (patch) | |
| tree | 8d54cfcf9b95de7bc9648a84c9cc591e4230beeb /menuApp/src/ofApp.cpp | |
| parent | 994c596bd131f13443fec0520494834eb8771c9f (diff) | |
hardcode dims?
Diffstat (limited to 'menuApp/src/ofApp.cpp')
| -rw-r--r-- | menuApp/src/ofApp.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/menuApp/src/ofApp.cpp b/menuApp/src/ofApp.cpp index 5d36000..44ebf68 100644 --- a/menuApp/src/ofApp.cpp +++ b/menuApp/src/ofApp.cpp @@ -74,7 +74,7 @@ void ofApp::draw(){ ofSetColor(255,255,255); ofPushMatrix(); //Store the coordinate system nexessary for some reason - background.draw(0,0,ofGetWidth(),ofGetHeight()); + background.draw(0,0,1080,1920); //ofGetWidth(),ofGetHeight()); ofPopMatrix(); //Restore the coordinate system @@ -116,10 +116,10 @@ ofPopMatrix(); //Restore the coordinate system } ofEnableAlphaBlending(); - overlay.draw(0,0,ofGetWidth(),ofGetHeight()); + overlay.draw(0,0,1080,1920); //ofGetWidth(),ofGetHeight()); ofDisableAlphaBlending(); - float t=ofGetElapsedTimef(); + float t=ofGetElapsedTimef (); } |
