mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-01-31 21:30:36 +00:00
Use correct include path on OS X
This path matches the libjpeg.framework we'll use to build the binary releases.
This commit is contained in:
parent
86ca73754d
commit
5c217771cb
1 changed files with 6 additions and 0 deletions
|
@ -27,8 +27,14 @@
|
|||
#ifdef RETEXTURE
|
||||
|
||||
#include "../header/local.h"
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <libjpeg/jpeglib.h>
|
||||
#include <libjpeg/jerror.h>
|
||||
#else
|
||||
#include <jpeglib.h>
|
||||
#include <jerror.h>
|
||||
#endif
|
||||
|
||||
void jpeg_memory_src(j_decompress_ptr cinfo,
|
||||
unsigned char *inbuffer,
|
||||
|
|
Loading…
Reference in a new issue