(svn r19094) -Codechange: don't check for NULL values before calling StrEmpty

This commit is contained in:
yexo
2010-02-11 14:58:51 +00:00
parent 506bcb622b
commit 9a80d81f4c
3 changed files with 6 additions and 7 deletions

View File

@@ -106,7 +106,7 @@ public:
delete *GetActiveBlitter();
*GetActiveBlitter() = newb;
DEBUG(driver, 1, "Successfully %s blitter '%s'",StrEmpty(name) ? "probed" : "loaded", bname);
DEBUG(driver, 1, "Successfully %s blitter '%s'", StrEmpty(name) ? "probed" : "loaded", bname);
return newb;
}
}