Change a couple of includes from angle brackets to quotes:

This makes Xcode happy, as it interprets angled brackets as system headers or headers inside of frameworks.
This commit is contained in:
C.W. Betts 2022-02-02 14:25:31 -07:00 committed by refractionpcsx2
parent 1a2272ad43
commit cae8e6ae79
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
#include "System.h"
#include "Config.h"
#include <common/FileSystem.h>
#include "common/FileSystem.h"
#include "common/StringUtil.h"
#include "fmt/core.h"

View File

@ -29,7 +29,7 @@
#include <wx/txtstrm.h>
#include <wx/zipstrm.h>
#include <wx/wfstream.h>
#include <PathDefs.h>
#include "PathDefs.h"
// This is a declaration for PatchMemory.cpp::_ApplyPatch where we're (patch.cpp)
// the only consumer, so it's not made public via Patch.h