From 8d671c4c77f41b0991fb6005d24736dccbe36cfd Mon Sep 17 00:00:00 2001 From: tim Date: Tue, 28 Mar 2017 23:22:55 +0100 Subject: hardcode dims? --- menuApp/src/ofApp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'menuApp/src/ofApp.cpp') 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 (); } -- cgit v1.2.3