Merge pull request #4299 from daniel229/patch_01

Turn off optimazation in amctrl.c when using vs2013 as it does not work correct.
This commit is contained in:
Henrik Rydgård 2013-10-23 05:19:45 -07:00
commit cb0211f5a3

View file

@ -13,6 +13,12 @@
#include "SHA1.h"
#include "amctrl.h"
//Turn off optimization in VS2013
#ifdef _MSC_VER
#if (_MSC_VER == 1800)
#pragma optimize( "", off )
#endif
#endif
/*************************************************************/
static const u8 loc_1CD4[16] = {0xE3, 0x50, 0xED, 0x1D, 0x91, 0x0A, 0x1F, 0xD0, 0x29, 0xBB, 0x1C, 0x3E, 0xF3, 0x40, 0x77, 0xFB};