aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/bitmapresource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/gfx/bitmapresource.cpp')
-rw-r--r--engines/sword25/gfx/bitmapresource.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/sword25/gfx/bitmapresource.cpp b/engines/sword25/gfx/bitmapresource.cpp
index 46e6ca77ce..1dde736621 100644
--- a/engines/sword25/gfx/bitmapresource.cpp
+++ b/engines/sword25/gfx/bitmapresource.cpp
@@ -42,9 +42,6 @@ namespace Sword25 {
#define BS_LOG_PREFIX "BITMAP"
-// Konstruktion / Destruktion
-// --------------------------
-
BitmapResource::BitmapResource(const Common::String &filename, Image *pImage) :
_valid(false),
_pImage(pImage),
@@ -56,8 +53,6 @@ BitmapResource::~BitmapResource() {
delete _pImage;
}
-// -----------------------------------------------------------------------------
-
uint BitmapResource::getPixel(int x, int y) const {
BS_ASSERT(x >= 0 && x < _pImage->getWidth());
BS_ASSERT(y >= 0 && y < _pImage->getHeight());