diff options
author | Le Philousophe | 2019-03-09 23:32:17 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-06-01 22:43:48 +0200 |
commit | cd9aefc425d723803135abe2dd41b542033f6e0e (patch) | |
tree | c202480e35d7748e3093a07d83802a2a7c84946f /engines | |
parent | 49c90c74a607e755342e4b41729381cd2ea17cc2 (diff) | |
download | scummvm-rg350-cd9aefc425d723803135abe2dd41b542033f6e0e.tar.gz scummvm-rg350-cd9aefc425d723803135abe2dd41b542033f6e0e.tar.bz2 scummvm-rg350-cd9aefc425d723803135abe2dd41b542033f6e0e.zip |
CRYOMNI3D: Add a function to disable a zone in fixed images
Diffstat (limited to 'engines')
-rw-r--r-- | engines/cryomni3d/fixed_image.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/cryomni3d/fixed_image.h b/engines/cryomni3d/fixed_image.h index 7e3d26655a..b462315323 100644 --- a/engines/cryomni3d/fixed_image.h +++ b/engines/cryomni3d/fixed_image.h @@ -74,6 +74,7 @@ public: const Graphics::Surface *surface() const { return _imageSurface; } void changeCallback(CallbackFunctor *callback) { delete _callback; _callback = callback; } Common::Point getZoneCenter(unsigned int zoneId) const; + void disableZone(unsigned int zoneId) { _zones[zoneId].valid = false; } ZonesMode _zonesMode; |