Core: Update some include paths.

This commit is contained in:
rogerman 2016-11-26 17:11:39 -08:00
parent 183b41cb77
commit 2612484c54
4 changed files with 7 additions and 10 deletions

View File

@ -23,7 +23,7 @@
#include "texcache.h"
#include "bits.h"
#include "./utils/bits.h"
#include "common.h"
#include "debug.h"
#include "gfx3d.h"

View File

@ -18,13 +18,10 @@
#include "colorspacehandler.h"
#if defined(ENABLE_AVX2)
#include "colorspacehandler_AVX2.h"
#include "colorspacehandler_AVX2.cpp"
#elif defined(ENABLE_SSE2)
#include "colorspacehandler_SSE2.h"
#include "colorspacehandler_SSE2.cpp"
#elif defined(ENABLE_ALTIVEC)
#include "colorspacehandler_AltiVec.h"
#include "colorspacehandler_AltiVec.cpp"
#endif

View File

@ -25,8 +25,8 @@
//Copyright (C) 1998 H. Peter Anvin <hpa@zytor.com>
//Copyright (C) 1998-2005 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
//based on libfat
//Copyright (c) 2006 Michael "Chishm" Chisholm
//based on libfat
//Copyright (c) 2006 Michael "Chishm" Chisholm
#ifndef EMUFAT_H
#define EMUFAT_H
@ -73,7 +73,7 @@ static const u8 BOOTSIG1 = 0XAA;
static void (*dateTime_)(u16* date, u16* time) = NULL;
#include "PACKED.h"
#include "../PACKED.h"
//A partition table entry for a MBR formatted storage device.
//The MBR partition table has four entries.
@ -262,7 +262,7 @@ struct __PACKED TFat32BootSector {
u8 boot_sign[2];
};
#include "PACKED_END.h"
#include "../PACKED_END.h"
// End Of Chain values for FAT entries
//FAT16 end of chain value used by Microsoft.

View File

@ -34,7 +34,7 @@ enum FNT_TYPES
FS_RESERVED = 3,
};
#include "PACKED.h"
#include "../PACKED.h"
struct FAT_NITRO
{
FAT_NITRO()
@ -91,7 +91,7 @@ struct OVR_NITRO
u32 fileID;
u32 reserved;
};
#include "PACKED_END.h"
#include "../PACKED_END.h"
class FS_NITRO
{