Skip to content

Commit

Permalink
fixed local variable bug
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Aug 6, 2018
1 parent 62505c3 commit 88e8d2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/ImageTSNELive/src/ofApp.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 88e8d2c

Please sign in to comment.