diff options
author | Strangerke | 2011-09-16 08:03:30 +0200 |
---|---|---|
committer | Strangerke | 2011-09-16 08:03:30 +0200 |
commit | cdf1335ea62f474c6528c1c41ea60d5a1f02769d (patch) | |
tree | c51e29aaf8a2139078e9d846302b46862545efcd | |
parent | 70c5b695df24dd9da6d7838939d3c448f602471a (diff) | |
download | scummvm-rg350-cdf1335ea62f474c6528c1c41ea60d5a1f02769d.tar.gz scummvm-rg350-cdf1335ea62f474c6528c1c41ea60d5a1f02769d.tar.bz2 scummvm-rg350-cdf1335ea62f474c6528c1c41ea60d5a1f02769d.zip |
CGE: Remove two useles externs, un-static-fy two Vga functions
-rw-r--r-- | engines/cge/vga13h.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/cge/vga13h.h b/engines/cge/vga13h.h index f52d8ba2f5..04c786777d 100644 --- a/engines/cge/vga13h.h +++ b/engines/cge/vga13h.h @@ -58,9 +58,6 @@ struct Seq { int _dly; }; -extern Seq _seq1[]; -extern Seq _seq2[]; - class SprExt { public: int _x0; @@ -214,8 +211,8 @@ public: void show(); void update(); - static void palToDac(const byte *palData, Dac *tab); - static void dacToPal(const Dac *tab, byte *palData); + void palToDac(const byte *palData, Dac *tab); + void dacToPal(const Dac *tab, byte *palData); }; class HorizLine: public Sprite { |