summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-01-28 12:42:36 +0000
committerComment <tim@gray.(none)>2013-01-28 12:42:36 +0000
commitf7667bd306b983f8f8daa0b40719aa665bf555b0 (patch)
tree19ba166a2c1bd666471bf16f74e93228d8819f89 /src/main.cpp
parent1f8525289c3533805fa235d25804f3413243743a (diff)
drag filenames into areas
Diffstat (limited to 'src/main.cpp')
-rwxr-xr-xsrc/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index e922099..fca2408 100755
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -6,11 +6,11 @@
int main( ){
ofAppGlutWindow window;
- ofSetupOpenGL(&window, 720,576, OF_WINDOW); // <-------- setup the GL context
+ ofSetupOpenGL(ofxFensterManager::get(), 720,576, OF_WINDOW); // <-------- setup the GL context
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:
- ofRunApp( new testApp());
+ ofRunFensterApp( new testApp());
}