aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/bitmapresource.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-18 10:52:24 +0000
committerEugene Sandulenko2010-10-12 22:53:49 +0000
commit485ff15d23b3ae9545f5c9df794f1326185eae7a (patch)
tree9994c94429c09f152bd7c017b6f74961a26b2e87 /engines/sword25/gfx/bitmapresource.h
parente71337861ffece83ca8fe254e411557249118d43 (diff)
downloadscummvm-rg350-485ff15d23b3ae9545f5c9df794f1326185eae7a.tar.gz
scummvm-rg350-485ff15d23b3ae9545f5c9df794f1326185eae7a.tar.bz2
scummvm-rg350-485ff15d23b3ae9545f5c9df794f1326185eae7a.zip
SWORD25: Mass-eliminating of BS_ prefix in fmv/ and gfx/
svn-id: r53258
Diffstat (limited to 'engines/sword25/gfx/bitmapresource.h')
-rw-r--r--engines/sword25/gfx/bitmapresource.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sword25/gfx/bitmapresource.h b/engines/sword25/gfx/bitmapresource.h
index 112ee379cd..75bdf161f5 100644
--- a/engines/sword25/gfx/bitmapresource.h
+++ b/engines/sword25/gfx/bitmapresource.h
@@ -48,7 +48,7 @@ namespace Sword25 {
class BS_Rect;
-class BS_BitmapResource : public BS_Resource {
+class BitmapResource : public BS_Resource {
public:
/**
@brief Die möglichen Flippingparameter für die Blit-Methode.
@@ -66,8 +66,8 @@ public:
FLIP_VH = FLIP_H | FLIP_V
};
- BS_BitmapResource(const Common::String &Filename, BS_Image *pImage);
- virtual ~BS_BitmapResource();
+ BitmapResource(const Common::String &Filename, Image *pImage);
+ virtual ~BitmapResource();
/**
@brief Gibt zurück, ob das Objekt einen gültigen Zustand hat.
@@ -210,7 +210,7 @@ public:
}
private:
- BS_Image *m_pImage;
+ Image *m_pImage;
bool m_Valid;
};