aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/opengl/swimage.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/gfx/opengl/swimage.h')
-rw-r--r--engines/sword25/gfx/opengl/swimage.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sword25/gfx/opengl/swimage.h b/engines/sword25/gfx/opengl/swimage.h
index d6e066661c..d563125d26 100644
--- a/engines/sword25/gfx/opengl/swimage.h
+++ b/engines/sword25/gfx/opengl/swimage.h
@@ -50,10 +50,10 @@ namespace Sword25 {
// CLASS DEFINITION
// -----------------------------------------------------------------------------
-class BS_SWImage : public BS_Image {
+class SWImage : public Image {
public:
- BS_SWImage(const Common::String &Filename, bool &Result);
- virtual ~BS_SWImage();
+ SWImage(const Common::String &Filename, bool &Result);
+ virtual ~SWImage();
virtual int GetWidth() const {
return m_Width;
@@ -61,12 +61,12 @@ public:
virtual int GetHeight() const {
return m_Height;
}
- virtual BS_GraphicEngine::COLOR_FORMATS GetColorFormat() const {
- return BS_GraphicEngine::CF_ARGB32;
+ virtual GraphicEngine::COLOR_FORMATS GetColorFormat() const {
+ return GraphicEngine::CF_ARGB32;
}
virtual bool Blit(int PosX = 0, int PosY = 0,
- int Flipping = BS_Image::FLIP_NONE,
+ int Flipping = Image::FLIP_NONE,
BS_Rect *pPartRect = NULL,
unsigned int Color = BS_ARGB(255, 255, 255, 255),
int Width = -1, int Height = -1);