aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/image/b25sloader.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/gfx/image/b25sloader.h')
-rw-r--r--engines/sword25/gfx/image/b25sloader.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sword25/gfx/image/b25sloader.h b/engines/sword25/gfx/image/b25sloader.h
index 8d8a68e6e8..aacac55ddd 100644
--- a/engines/sword25/gfx/image/b25sloader.h
+++ b/engines/sword25/gfx/image/b25sloader.h
@@ -48,19 +48,19 @@ namespace Sword25 {
// Klassendeklaration
// -----------------------------------------------------------------------------
-class BS_B25SLoader : public BS_ImageLoader {
+class B25SLoader : public ImageLoader {
public:
- static BS_ImageLoader *CreateInstance() {
+ static ImageLoader *CreateInstance() {
#include "sword25/kernel/memlog_off.h"
- return static_cast<BS_ImageLoader *>(new BS_B25SLoader());
+ return static_cast<ImageLoader *>(new B25SLoader());
#include "sword25/kernel/memlog_on.h"
}
protected:
virtual bool IsCorrectImageFormat(const char *FileDataPtr, unsigned int FileSize);
- virtual bool DecodeImage(const char *FileDataPtr, unsigned int FileSize, BS_GraphicEngine::COLOR_FORMATS ColorFormat, byte *&UncompressedDataPtr,
+ virtual bool DecodeImage(const char *FileDataPtr, unsigned int FileSize, GraphicEngine::COLOR_FORMATS ColorFormat, byte *&UncompressedDataPtr,
int &Width, int &Height, int &Pitch);
- virtual bool ImageProperties(const char *FileDataPtr, unsigned int FileSize, BS_GraphicEngine::COLOR_FORMATS &ColorFormat, int &Width, int &Height);
+ virtual bool ImageProperties(const char *FileDataPtr, unsigned int FileSize, GraphicEngine::COLOR_FORMATS &ColorFormat, int &Width, int &Height);
};