--- 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 <string>
#include <map>
@@ -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<Blitters::iterator, bool> P =
#endif /* !NDEBUG */
@@ -130,4 +130,6 @@
const char *GetName();
};
+extern char _ini_blitter[32];
+
#endif /* BLITTER_FACTORY_HPP */