diff options
author | uruk | 2014-07-14 18:14:20 +0200 |
---|---|---|
committer | uruk | 2014-07-14 18:14:20 +0200 |
commit | 807f354cba9866248c8f7bd0d0bc9367aa4981af (patch) | |
tree | 665b60b71c6187c16837d965ca933d2fd6e7797b | |
parent | b941fe226d07477f114197dcc69c581dd173e689 (diff) | |
download | scummvm-rg350-807f354cba9866248c8f7bd0d0bc9367aa4981af.tar.gz scummvm-rg350-807f354cba9866248c8f7bd0d0bc9367aa4981af.tar.bz2 scummvm-rg350-807f354cba9866248c8f7bd0d0bc9367aa4981af.zip |
CGE2: Remove unused classes from vga13h.
-rw-r--r-- | engines/cge2/vga13h.cpp | 15 | ||||
-rw-r--r-- | engines/cge2/vga13h.h | 18 |
2 files changed, 0 insertions, 33 deletions
diff --git a/engines/cge2/vga13h.cpp b/engines/cge2/vga13h.cpp index fef9b6b834..02d536c3e8 100644 --- a/engines/cge2/vga13h.cpp +++ b/engines/cge2/vga13h.cpp @@ -1107,7 +1107,6 @@ void Bitmap::show(V2D pos) { } } - void Bitmap::hide(V2D pos) { xLatPos(pos); @@ -1138,16 +1137,6 @@ void Bitmap::hide(V2D pos) { } } -/*--------------------------------------------------------------------------*/ - -HorizLine::HorizLine(CGE2Engine *vm) : Sprite(vm), _vm(vm) { - warning("HorizLine::HorizLine()"); -} - -SceneLight::SceneLight(CGE2Engine *vm) : Sprite(vm), _vm(vm) { - warning("SceneLight::SceneLight()"); -} - Speaker::Speaker(CGE2Engine *vm): Sprite(vm), _vm(vm) { // Set the sprite list BitmapPtr SP = new Bitmap[2]; @@ -1160,8 +1149,4 @@ Speaker::Speaker(CGE2Engine *vm): Sprite(vm), _vm(vm) { setShapeList(SP, 2); } -PocLight::PocLight(CGE2Engine *vm): Sprite(vm), _vm(vm) { - warning("PocLight::PocLight()"); -} - } // End of namespace CGE2 diff --git a/engines/cge2/vga13h.h b/engines/cge2/vga13h.h index 17ce4d3dc9..77bece6884 100644 --- a/engines/cge2/vga13h.h +++ b/engines/cge2/vga13h.h @@ -339,30 +339,12 @@ public: void dacToPal(const Dac *tab, byte *palData); }; -class HorizLine: public Sprite { - CGE2Engine *_vm; -public: - HorizLine(CGE2Engine *vm); -}; - -class SceneLight: public Sprite { - CGE2Engine *_vm; -public: - SceneLight(CGE2Engine *vm); -}; - class Speaker: public Sprite { CGE2Engine *_vm; public: Speaker(CGE2Engine *vm); }; -class PocLight: public Sprite { - CGE2Engine *_vm; -public: - PocLight(CGE2Engine *vm); -}; - } // End of namespace CGE2 #endif // CGE2_VGA13H_H |