mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01:00
Use angle brackets for including tinyxml2.h
Since TinyXML2 is a third-party dependency, we should use angle brackets and treat it like one.
This commit is contained in:
parent
2af396fb30
commit
d455e38715
4 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@
|
||||||
#include <SDL.h>
|
#include <SDL.h>
|
||||||
#include <physfs.h>
|
#include <physfs.h>
|
||||||
|
|
||||||
#include "tinyxml2.h"
|
#include <tinyxml2.h>
|
||||||
|
|
||||||
/* These are needed for PLATFORM_* crap */
|
/* These are needed for PLATFORM_* crap */
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
#include "FileSystemUtils.h"
|
#include "FileSystemUtils.h"
|
||||||
|
|
||||||
#include "tinyxml2.h"
|
#include <tinyxml2.h>
|
||||||
|
|
||||||
#include "Network.h"
|
#include "Network.h"
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
#include "MakeAndPlay.h"
|
#include "MakeAndPlay.h"
|
||||||
|
|
||||||
#include "tinyxml2.h"
|
#include <tinyxml2.h>
|
||||||
|
|
||||||
#include "FileSystemUtils.h"
|
#include "FileSystemUtils.h"
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
#include "Script.h"
|
#include "Script.h"
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
#include "tinyxml2.h"
|
#include <tinyxml2.h>
|
||||||
|
|
||||||
#include "Enums.h"
|
#include "Enums.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue