Cleanings. Mostly indent fixes.

This commit is contained in:
Giulio Camuffo 2011-03-21 17:18:04 +01:00
parent f1420f4704
commit cff70f9fad
15 changed files with 57 additions and 64 deletions

View file

@ -108,6 +108,11 @@ Bitmap::Bitmap(const char *data, int w, int h, const char *fname) : Object() {
g_driver->createBitmap(this);
}
Bitmap::Bitmap() :
Object() {
_data = NULL;
}
void Bitmap::draw() const {
if (_currImage == 0)
return;