(svn r10358) -Codechange: remove the cargopacket leakchecker as it never asserted in almost a week of stresstesting, so I'm pretty sure all cornercases are tested by now.

This commit is contained in:
rubidium
2007-06-27 17:19:05 +00:00
parent 0ab80d824b
commit 926d103482
3 changed files with 1 additions and 28 deletions

View File

@@ -64,6 +64,7 @@ public:
BlitterFactoryBase *b = (*it).second;
if (strcasecmp(name, b->name) == 0) {
Blitter *newb = b->CreateInstance();
delete *GetActiveBlitter();
*GetActiveBlitter() = newb;
return newb;
}