From af2658ed3ca458982970d4e19027d805e79fba62 Mon Sep 17 00:00:00 2001 From: halleyscometsw Date: Sat, 6 Feb 2010 09:02:14 +0000 Subject: [PATCH] Disable big endian pcm detection for now, as it was breaking some other files git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@735 51a99a44-fe44-0410-b1ba-c3e57ba2b86b --- src/meta/ea_header.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/meta/ea_header.c b/src/meta/ea_header.c index e2f8e59f..6f2cf50e 100644 --- a/src/meta/ea_header.c +++ b/src/meta/ea_header.c @@ -82,10 +82,14 @@ void Parse_Header(STREAMFILE* streamFile,EA_STRUCT* ea, off_t offset, int length case 0xFC: case 0xFD: break; +#if 0 + // was added for My Sims Kingdom, apparently this is not the right + // way to do it (see NFS Most Wanted and Underground 2) case 0x06: // if (readPatch(streamFile, &offset) == 0x65) ea->compression_type = EA_PCM_BE; break; +#endif case 0x80: // compression version ea->compression_version = (uint8_t)readPatch(streamFile, &offset); break;