Add <> to zlib and bzip includes (matters on Linux)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3065 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2010-05-23 15:10:49 +00:00
parent d09c269d17
commit 0b7bbdc723
4 changed files with 6 additions and 5 deletions

View File

@ -76,7 +76,7 @@ typedef int BOOL;
// unchanged for long periods of time, or happen to be used by almost everything, so they
// need a full recompile anyway, when modified (etc)
#include "zlib/zlib.h"
#include <zlib/zlib.h>
#include "Pcsx2Defs.h"
#include "i18n.h"

View File

@ -16,7 +16,7 @@
#pragma once
#include "Utilities/PersistentThread.h"
//#include "zlib/zlib.h"
//#include <zlib/zlib.h>
using namespace Threading;

View File

@ -7,7 +7,7 @@
#include <sys/stat.h>
#include <string.h>
#include "zlib/zlib.h"
#include <zlib/zlib.h>
#include "Config.h"

View File

@ -22,8 +22,9 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "zlib/zlib.h"
#include "bzip2/bzlib.h"
#include <zlib/zlib.h>
#include <bzip2/bzlib.h>
#include "CDVDiso.h"
#include "libiso.h"