1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-06 04:53:32 +02: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:
Misa 2020-07-19 12:03:16 -07:00 committed by Ethan Lee
parent 2af396fb30
commit d455e38715
4 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@
#include <SDL.h>
#include <physfs.h>
#include "tinyxml2.h"
#include <tinyxml2.h>
/* These are needed for PLATFORM_* crap */
#if defined(_WIN32)

View File

@ -14,7 +14,7 @@
#include "FileSystemUtils.h"
#include "tinyxml2.h"
#include <tinyxml2.h>
#include "Network.h"

View File

@ -5,7 +5,7 @@
#include "MakeAndPlay.h"
#include "tinyxml2.h"
#include <tinyxml2.h>
#include "FileSystemUtils.h"

View File

@ -10,7 +10,7 @@
#include "Script.h"
#include "time.h"
#include "tinyxml2.h"
#include <tinyxml2.h>
#include "Enums.h"