]> git.sesse.net Git - vlc/blob - contrib/src/projectM/win64.patch
Make the config dirty flag global rather than per item
[vlc] / contrib / src / projectM / win64.patch
1 --- projectM/glew.h.orig        2011-11-06 20:20:42.573445229 -0500
2 +++ projectM/glew.h     2011-11-06 20:21:25.349657365 -0500
3 @@ -150,7 +150,8 @@
4  #endif
5  #if !defined(_PTRDIFF_T_DEFINED) && !defined(_PTRDIFF_T_)
6  #  ifdef _WIN64
7 -typedef __int64 ptrdiff_t;
8 +#include <inttypes.h>
9 +typedef int64_t ptrdiff_t;
10  #  else
11  typedef _W64 int ptrdiff_t;
12  #  endif