mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-03 15:39:46 +01:00
Consistently use angle brackets for SDL.h includes
That's how it should be done, because the SDL headers aren't going to be installed in this repository. The game was a bit inconsistent before but now it isn't anymore.
This commit is contained in:
parent
6c85fae339
commit
2af396fb30
7 changed files with 7 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
#ifndef BLOCKV_H
|
#ifndef BLOCKV_H
|
||||||
#define BLOCKV_H
|
#define BLOCKV_H
|
||||||
|
|
||||||
#include "SDL.h"
|
#include <SDL.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
class blockclass
|
class blockclass
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include "SDL.h"
|
#include <SDL.h>
|
||||||
#include "Maths.h"
|
#include "Maths.h"
|
||||||
#include "UtilityClass.h"
|
#include "UtilityClass.h"
|
||||||
#include "GraphicsUtil.h"
|
#include "GraphicsUtil.h"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef GRAPHICSRESOURCES_H
|
#ifndef GRAPHICSRESOURCES_H
|
||||||
#define GRAPHICSRESOURCES_H
|
#define GRAPHICSRESOURCES_H
|
||||||
|
|
||||||
#include "SDL.h"
|
#include <SDL.h>
|
||||||
|
|
||||||
class GraphicsResources
|
class GraphicsResources
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef GRAPHICSUTIL_H
|
#ifndef GRAPHICSUTIL_H
|
||||||
#define GRAPHICSUTIL_H
|
#define GRAPHICSUTIL_H
|
||||||
|
|
||||||
#include "SDL.h"
|
#include <SDL.h>
|
||||||
|
|
||||||
struct colourTransform
|
struct colourTransform
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <map> // FIXME: I should feel very bad for using C++ -flibit
|
#include <map> // FIXME: I should feel very bad for using C++ -flibit
|
||||||
|
|
||||||
#include "SDL.h"
|
#include <SDL.h>
|
||||||
|
|
||||||
#include "Screen.h"
|
#include "Screen.h"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef TEXTBOX_H
|
#ifndef TEXTBOX_H
|
||||||
#define TEXTBOX_H
|
#define TEXTBOX_H
|
||||||
|
|
||||||
#include "SDL.h"
|
#include <SDL.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include "UtilityClass.h"
|
#include "UtilityClass.h"
|
||||||
|
|
||||||
#include "SDL.h"
|
#include <SDL.h>
|
||||||
|
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
Loading…
Reference in a new issue