Compile fix for older mingw headers (which are in build-tools), once we update to newer headers this won't be necessary anymore. (n/w)

This commit is contained in:
Lord-Nightmare 2015-07-23 14:23:15 -04:00
parent ff45ded923
commit 4030382235

View File

@ -75,7 +75,9 @@ BX_PRAGMA_DIAGNOSTIC_POP()
# define D3D11_REQ_MAXANISOTROPY 16
# endif // D3D11_REQ_MAXANISOTROPY
//typedef void ID3D11InfoQueue;
#if (__GNUC__ < 5)
typedef void ID3D11InfoQueue;
#endif // (__GNUC__ < 5)
#endif // __MINGW32__