diff options
author | Paul Gilbert | 2016-07-20 07:56:26 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-07-20 07:56:26 -0400 |
commit | c5792fce4bcf8a4e2e89d83242a248a56f579bc6 (patch) | |
tree | 7b6b5aadb2c82c8d2f837a3192cb9740f3a9d7df /engines/titanic/pet_control | |
parent | d5bf17e73ff9533d2f54588622048ab755f4151b (diff) | |
download | scummvm-rg350-c5792fce4bcf8a4e2e89d83242a248a56f579bc6.tar.gz scummvm-rg350-c5792fce4bcf8a4e2e89d83242a248a56f579bc6.tar.bz2 scummvm-rg350-c5792fce4bcf8a4e2e89d83242a248a56f579bc6.zip |
TITANIC: Clarify movie/surface has frame fields & variables
Diffstat (limited to 'engines/titanic/pet_control')
-rw-r--r-- | engines/titanic/pet_control/pet_gfx_element.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/pet_control/pet_gfx_element.cpp b/engines/titanic/pet_control/pet_gfx_element.cpp index 511fb5e4de..9fc0c2a57d 100644 --- a/engines/titanic/pet_control/pet_gfx_element.cpp +++ b/engines/titanic/pet_control/pet_gfx_element.cpp @@ -81,7 +81,7 @@ Rect CPetGfxElement::getBounds() const { if (!obj) obj = _object0; - if (obj && obj->getSurface45()) + if (obj && obj->surfaceHasFrame()) return _bounds; else return Rect(); |