Skip to content

Commit

Permalink
modified data path
Browse files Browse the repository at this point in the history
  • Loading branch information
François VISCONTE committed Dec 16, 2009
1 parent 23d4616 commit 19abf67
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/ofAppGlutWindow.h
Expand Up @@ -6,7 +6,7 @@

#ifdef TARGET_WIN32
#define GLUT_BUILDING_LIB
#include "glut.h"
#include <glut.h>
#endif
#ifdef TARGET_OSX
#include <GLUT/glut.h>
Expand Down
4 changes: 2 additions & 2 deletions events/ofEventUtils.h
Expand Up @@ -2,8 +2,8 @@

#ifdef OF_USING_POCO

#include "Poco/FIFOEvent.h"
#include "Poco/Delegate.h"
#include <Poco/FIFOEvent.h>
#include <Poco/Delegate.h>



Expand Down
2 changes: 1 addition & 1 deletion graphics/ofImage.h
Expand Up @@ -5,7 +5,7 @@
#include "ofTexture.h"
#include "ofGraphics.h"
#include "ofAppRunner.h" // for height()
#include "FreeImage.h"
#include <FreeImage.h>
#include "ofUtils.h"

typedef struct {
Expand Down
4 changes: 2 additions & 2 deletions sound/ofSoundPlayer.h
Expand Up @@ -5,8 +5,8 @@

#ifndef TARGET_OF_IPHONE
extern "C" {
#include "fmod.h"
#include "fmod_errors.h"
#include <fmod.h>
#include <fmod_errors.h>
}
#endif

Expand Down
8 changes: 4 additions & 4 deletions utils/ofConstants.h
Expand Up @@ -38,8 +38,8 @@
#endif
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "GLee.h"
#include "glu.h"
#include <GLee.h>
#include <glu.h>
#define __WINDOWS_DS__
#define __WINDOWS_MM__
#if (_MSC_VER) // microsoft visual studio
Expand Down Expand Up @@ -81,7 +81,7 @@
#define __MACOSX_CORE__
#endif
#include <unistd.h>
#include "GLee.h"
#include <GLee.h>
#include <OpenGL/glu.h>
#include <ApplicationServices/ApplicationServices.h>

Expand All @@ -92,7 +92,7 @@

#ifdef TARGET_LINUX
#include <unistd.h>
#include "GLee.h"
#include <GLee.h>
#include <GL/glu.h>

// for some reason, this isn't defined at compile time,
Expand Down
2 changes: 1 addition & 1 deletion utils/ofUtils.cpp
Expand Up @@ -130,7 +130,7 @@ void ofDisableDataPath(){

//use ofSetDataPathRoot() to override this
#if defined TARGET_OSX
static string dataPathRoot = "../../../data/";
static string dataPathRoot = "data/";
#else
static string dataPathRoot = "data/";
#endif
Expand Down

0 comments on commit 19abf67

Please sign in to comment.