From 88e8d2cf1f6f7bc46f722a902014d21575ea43c0 Mon Sep 17 00:00:00 2001 From: Gene Kogan Date: Sun, 5 Aug 2018 22:31:14 -0600 Subject: [PATCH] fixed local variable bug --- apps/ImageTSNELive/src/ofApp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ImageTSNELive/src/ofApp.cpp b/apps/ImageTSNELive/src/ofApp.cpp index 8559911..36ed2a0 100644 --- a/apps/ImageTSNELive/src/ofApp.cpp +++ b/apps/ImageTSNELive/src/ofApp.cpp @@ -24,9 +24,9 @@ void ofApp::scanDirectoryRecursive(ofDirectory dir) { void ofApp::setup(){ #ifdef RELEASE - string ccvPath = ofToDataPath("image-net-2012.sqlite3"); + ccvPath = ofToDataPath("image-net-2012.sqlite3"); #else - string ccvPath = ofToDataPath("../../../../data/image-net-2012.sqlite3"); + ccvPath = ofToDataPath("../../../../data/image-net-2012.sqlite3"); #endif // listen for scroll events, and save screenshot button press