mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-27 20:28:27 +00:00
Fix for bug #896844 (DIG: Missing subtitle at the lab console)
svn-id: r13446
This commit is contained in:
parent
dedc33d99c
commit
330cf43383
@ -107,7 +107,7 @@ void ScummEngine::CHARSET_1() {
|
||||
if (getTalkingActor() != 0xFF)
|
||||
a = derefActorSafe(getTalkingActor(), "CHARSET_1");
|
||||
|
||||
if (a && _string[0].overhead != 0) {
|
||||
if (a && a->isInCurrentRoom() && _string[0].overhead != 0) {
|
||||
if (_version <= 5) {
|
||||
_string[0].xpos = a->_pos.x - camera._cur.x + (_screenWidth / 2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user