mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
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:
commit
cb0211f5a3
1 changed files with 6 additions and 0 deletions
|
@ -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};
|
||||
|
|
Loading…
Add table
Reference in a new issue