diff --git a/source/core/blargg_common.h b/source/core/blargg_common.h index 413fd6b..60dcf3e 100644 --- a/source/core/blargg_common.h +++ b/source/core/blargg_common.h @@ -34,9 +34,6 @@ arithmetic on smaller types. */ // In case compiler doesn't support these properly. Used rarely. #define STATIC_CAST(T,expr) static_cast (expr) -// User configuration can override the above macros if necessary -#include "blargg_config.h" - // BOOST_STATIC_ASSERT( expr ): Generates compile error if expr is 0. #ifndef BOOST_STATIC_ASSERT #ifdef _MSC_VER diff --git a/source/core/blargg_config.h b/source/core/blargg_config.h deleted file mode 100644 index 3ef8c2d..0000000 --- a/source/core/blargg_config.h +++ /dev/null @@ -1,17 +0,0 @@ -// Library configuration. Modify this file as necessary. - -// File_Extractor 1.0.0 -#ifndef BLARGG_CONFIG_H -#define BLARGG_CONFIG_H - -#ifndef HAVE_STDINT_H -#define HAVE_STDINT_H -#endif - -// Use standard config.h if present -#ifdef HAVE_CONFIG_H - #include "config.h" -#endif - - -#endif