Lowercase includes for psapi.h and dbghelp.h windows includes.

This makes cross compilation a little less painful
This commit is contained in:
Martijn Berger 2016-09-19 14:20:37 +02:00
parent 25ee094226
commit cc9d0eff81
2 changed files with 2 additions and 2 deletions

@ -41,7 +41,7 @@
#include <shlobj.h>
#include <tlhelp32.h>
#include <Psapi.h>
#include <psapi.h>
#include <windowsx.h>
#include "utfconv.h"

@ -35,7 +35,7 @@
# include <execinfo.h>
#elif defined(WIN32)
# include <windows.h>
# include <DbgHelp.h>
# include <dbghelp.h>
#endif
int BLI_cpu_support_sse2(void)