diff options
author | uruk | 2014-05-15 15:03:59 +0200 |
---|---|---|
committer | uruk | 2014-05-15 15:03:59 +0200 |
commit | 45714a12f1b522f302fc06ec5c8fd1412a05e3f4 (patch) | |
tree | b9faa0f984aae8c9aeb8e9e0c5fc4c959525bf9c | |
parent | dc370d49949ceae0b8aa519ee5a73c00ccac2d34 (diff) | |
download | scummvm-rg350-45714a12f1b522f302fc06ec5c8fd1412a05e3f4.tar.gz scummvm-rg350-45714a12f1b522f302fc06ec5c8fd1412a05e3f4.tar.bz2 scummvm-rg350-45714a12f1b522f302fc06ec5c8fd1412a05e3f4.zip |
CGE2: Implement showBak().
-rw-r--r-- | engines/cge2/cge2_main.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/cge2/cge2_main.cpp b/engines/cge2/cge2_main.cpp index 9647eebafd..941f2b8ca4 100644 --- a/engines/cge2/cge2_main.cpp +++ b/engines/cge2/cge2_main.cpp @@ -343,14 +343,11 @@ void CGE2Engine::showBak(int ref) { Sprite *spr = _spare->locate(ref); if (spr != nullptr) { _bitmapPalette = _vga->_sysPal; - warning("Check again this ^ !"); spr->expand(); _bitmapPalette = NULL; - //spr->show(2); + spr->show(2); _vga->copyPage(1, 2); _spare->dispose(spr); - - warning("STUB: CGE2Engine::showBak()"); } } |