obs-d3d11: Use cinttypes header (mingw)

There appears to be a bug with mingw where including the regular C
inttypes.h won't work; instead you have to use the 'cinttypes' C++
version.
This commit is contained in:
martell
2015-02-07 00:27:23 +00:00
committed by jp9000
parent e96bd8c6bb
commit d1a1a84722

View File

@@ -15,7 +15,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#include <inttypes.h>
#include <cinttypes>
#include <util/base.h>
#include <util/platform.h>
#include <graphics/matrix3.h>