summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--menuApp/src/dirscanner.cpp4
-rw-r--r--menuApp/src/ofApp.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/menuApp/src/dirscanner.cpp b/menuApp/src/dirscanner.cpp
index d0f80a0..325c97d 100644
--- a/menuApp/src/dirscanner.cpp
+++ b/menuApp/src/dirscanner.cpp
@@ -36,7 +36,7 @@ void playItem::draw(){
//ofEnableAlphaBlending();
//ofSetColor(255,255,255,1.0);
- image.draw(0,0,ofGetWidth(),ofGetHeight());
+ image.draw(0,0,1080*FACTOR,1920*FACTOR);
//ofDisableAlphaBlending();
if (ofGetElapsedTimef()-startTime>5.0){
@@ -45,7 +45,7 @@ void playItem::draw(){
}
if (video.isLoaded()){
video.update();
- video.draw(0,0,ofGetWidth(),ofGetHeight());
+ video.draw(0,0,1080*FACTOR,1920*FACTOR);
//ofLogNotice() << "position: "<<video.getPosition();
if (video.getIsMovieDone()){
isFinished=true;
diff --git a/menuApp/src/ofApp.cpp b/menuApp/src/ofApp.cpp
index 14ce45f..6b92c87 100644
--- a/menuApp/src/ofApp.cpp
+++ b/menuApp/src/ofApp.cpp
@@ -171,7 +171,7 @@ void ofApp::setup(){
*/
//load
- ofSetFrameRate(5);
+ ofSetFrameRate(25);
lastPoll=POLL_INTERVAL;