From 38778e34e512bd2680f5783bff14c2eca9bb648c Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 27 Aug 2012 16:45:04 +0000 Subject: [PATCH] fix bug compiling in old visual studios due to mistaken use of stdint.h. we could add stdint.h if we need to but fex compiles fine without it --- desmume/src/windows/File_Extractor/fex/blargg_config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desmume/src/windows/File_Extractor/fex/blargg_config.h b/desmume/src/windows/File_Extractor/fex/blargg_config.h index 8ec5b87c8..79e621b2c 100644 --- a/desmume/src/windows/File_Extractor/fex/blargg_config.h +++ b/desmume/src/windows/File_Extractor/fex/blargg_config.h @@ -27,7 +27,8 @@ fex_zip_type, */ -#define HAVE_STDINT_H +//old (any?) msvc doesnt have stdint.h so this better not be here. +//#define HAVE_STDINT_H // Use standard config.h if present #ifdef HAVE_CONFIG_H