diff options
author | Nipun Garg | 2019-06-21 21:45:45 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:54 +0200 |
commit | 8c024e7f57347a78f2478d59ab6f881b1e1a51b2 (patch) | |
tree | 7220d18354556e37989e5b6d829ffec164460cf6 | |
parent | 1ad07642747a66a71e1aac7a595cbd15a986b7b7 (diff) | |
download | scummvm-rg350-8c024e7f57347a78f2478d59ab6f881b1e1a51b2.tar.gz scummvm-rg350-8c024e7f57347a78f2478d59ab6f881b1e1a51b2.tar.bz2 scummvm-rg350-8c024e7f57347a78f2478d59ab6f881b1e1a51b2.zip |
HDB: Remove stubs from processCines: C_RESETCAMERA
-rw-r--r-- | engines/hdb/ai-cinematic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/ai-cinematic.cpp b/engines/hdb/ai-cinematic.cpp index c868e6be8e..2baac7a954 100644 --- a/engines/hdb/ai-cinematic.cpp +++ b/engines/hdb/ai-cinematic.cpp @@ -105,8 +105,8 @@ void AI::processCines() { case C_RESETCAMERA: int px, py; _cameraLock = false; - warning("STUB: AI::GetPlayerXY required"); - warning("STUB: MAP::CenterMapXY required"); + g_hdb->_ai->getPlayerXY(&px, &py); + g_hdb->_map->centerMapXY(px + 16, py + 16); complete = true; break; case C_MOVECAMERA: |