diff options
-rw-r--r-- | engines/cge2/cge2_main.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/cge2/cge2_main.cpp b/engines/cge2/cge2_main.cpp index d2188d7a8b..e9674c1e60 100644 --- a/engines/cge2/cge2_main.cpp +++ b/engines/cge2/cge2_main.cpp @@ -367,12 +367,7 @@ void CGE2Engine::loadMap(int cav) { } void CGE2Engine::openPocket() { - for (int i = 0; i < 2; i++) { - for (int j = 0; j < kPocketMax + 1; j++) { - int ref = (_heroTab[i])->_pocket[j]->_ref; - _heroTab[i]->_pocket[j] = (ref == -1) ? nullptr : _vga->_showQ->locate(ref); - } - } + warning("STUB: CGE2Engine::openPocket()"); } void CGE2Engine::runGame() { |