diff -r 5a9dc001e1ad -r 1c4a4a609f85 src/blitter/factory.hpp --- a/src/blitter/factory.hpp Mon Dec 03 23:39:38 2007 +0000 +++ b/src/blitter/factory.hpp Tue Jan 22 21:00:30 2008 +0000 @@ -4,8 +4,8 @@ #define BLITTER_FACTORY_HPP #include "base.hpp" -#include "../string.h" #include "../debug.h" +#include "../string_func.h" #include #include @@ -41,7 +41,7 @@ if (name == NULL) return; this->name = strdup(name); -#if !defined(NDEBUG) +#if !defined(NDEBUG) || defined(WITH_ASSERT) /* NDEBUG disables asserts and gives a warning: unused variable 'P' */ std::pair P = #endif /* !NDEBUG */ @@ -130,4 +130,6 @@ const char *GetName(); }; +extern char _ini_blitter[32]; + #endif /* BLITTER_FACTORY_HPP */