From 17f4a2b55520c0e3a78c063996cdcb4307b58698 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Thu, 28 Apr 2011 09:48:40 -0500 Subject: [PATCH] workaround stdint header should not be in angle brackets --- src/wiiuse.h | 2 +- src/wiiuse_internal.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wiiuse.h b/src/wiiuse.h index 64f67a6..76e4d57 100644 --- a/src/wiiuse.h +++ b/src/wiiuse.h @@ -78,7 +78,7 @@ #if defined(_MSC_VER) && (_MSC_VER < 1600) /* MS compilers of pre-VC2010 versions don't have stdint.h */ - #include + #include "wiiuse_msvcstdint.h" #else #include #endif diff --git a/src/wiiuse_internal.h b/src/wiiuse_internal.h index d21fc55..45af7ba 100644 --- a/src/wiiuse_internal.h +++ b/src/wiiuse_internal.h @@ -53,7 +53,7 @@ #if defined(_MSC_VER) && (_MSC_VER < 1600) /* MS compilers of pre-VC2010 versions don't have stdint.h */ - #include + #include "wiiuse_msvcstdint.h" #else #include #endif