Try shutting up a few random warnings.

develop
Alexander Gavrilov 2012-09-29 12:47:41 +04:00
parent 38f2ae399a
commit eaddd0e646
3 changed files with 3 additions and 2 deletions

@ -65,6 +65,7 @@ namespace DFHack
RPCService *owner, const char *name, int flags)
: RPCFunctionBase(in, out), name(name), flags(flags), owner(owner), id(-1)
{}
virtual ~ServerFunctionBase() {}
RPCService *owner;
int16_t id;

@ -585,7 +585,7 @@ bool MapExtras::Block::Allocate()
if (!block)
return false;
delete item_counts;
delete[] item_counts;
delete tiles;
delete basemats;
init();

@ -195,7 +195,7 @@ bool Screen::drawBorder(const std::string &title)
if (!gps) return false;
int dimx = gps->dimx, dimy = gps->dimy;
Pen border(0xDB, 8);
Pen border('\xDB', 8);
Pen text(0, 0, 7);
Pen signature(0, 0, 8);