Removing unnecessary file

This commit is contained in:
Sergio Martin 2024-01-13 13:48:45 +01:00
parent 47112198ad
commit 8059551339
2 changed files with 0 additions and 20 deletions

View File

@ -34,9 +34,6 @@ arithmetic on smaller types. */
// In case compiler doesn't support these properly. Used rarely. // In case compiler doesn't support these properly. Used rarely.
#define STATIC_CAST(T,expr) static_cast<T> (expr) #define STATIC_CAST(T,expr) static_cast<T> (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. // BOOST_STATIC_ASSERT( expr ): Generates compile error if expr is 0.
#ifndef BOOST_STATIC_ASSERT #ifndef BOOST_STATIC_ASSERT
#ifdef _MSC_VER #ifdef _MSC_VER

View File

@ -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