Give the bool2string function back...

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@4337 4a71c877-e1ca-e34f-864e-861f7616d084
master
Dennis Schridde 2008-03-25 23:54:28 +00:00
parent 2f049ab0f0
commit c7a9f0f166
1 changed files with 8 additions and 0 deletions

View File

@ -89,6 +89,14 @@ do { \
} while(0)
/*
static inline WZ_DECL_CONST const char * bool2string(bool var)
{
return (var ? "true" : "false");
}
*/
void tf_error(const char * fmt, ...)
{
va_list ap;