updated include path for SDL.h

git-svn-id: svn://anubis/dwscr/trunk@116 5bef9df8-b654-44bb-925b-0ff18baa8f8c
This commit is contained in:
josh 2009-09-22 16:05:57 +00:00
parent bc2f18fe87
commit 2019bad104
4 changed files with 5 additions and 5 deletions

View File

@ -10,8 +10,8 @@
#include <iostream>
#include <string>
#include <SDL/SDL.h>
#include <SDL/SDL_syswm.h>
#include <SDL.h>
#include <SDL_syswm.h>
#include "displayinfo.h"
#include "ss/SSMain.h"
using namespace std;

View File

@ -11,7 +11,7 @@
#include <time.h> /* time() */
#include <GL/gl.h>
#include <GL/glu.h>
#include <SDL/SDL.h>
#include <SDL.h>
#include "SSMain.h"
#include "PlainSpin.h"
#include "LightBounce.h"

View File

@ -8,7 +8,7 @@
#define SSMAIN_H
#include <GL/gl.h>
#include <SDL/SDL.h>
#include <SDL.h>
class SSMode;

View File

@ -7,7 +7,7 @@
#ifndef SSMODE_H
#define SSMODE_H
#include <SDL/SDL.h>
#include <SDL.h>
#include <GL/gl.h>
class SSMain;