diff options
author | Colin Snover | 2017-10-05 21:31:29 -0500 |
---|---|---|
committer | Colin Snover | 2017-10-06 22:10:50 -0500 |
commit | 0ac5d84062e430dff0f102788015dbb609fcdaa0 (patch) | |
tree | ee434b4a9a60b1499a676aa9438af4686dce534c /engines/sci/engine | |
parent | 5cffa3891f48d64154f00571c8127ef2c601d6d5 (diff) | |
download | scummvm-rg350-0ac5d84062e430dff0f102788015dbb609fcdaa0.tar.gz scummvm-rg350-0ac5d84062e430dff0f102788015dbb609fcdaa0.tar.bz2 scummvm-rg350-0ac5d84062e430dff0f102788015dbb609fcdaa0.zip |
SCI32: Clean up ScreenItem
* Rewrap comments to 80 columns
* Clarify comments where possible
* Use smart pointers where appropriate
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/object.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/sci/engine/object.h b/engines/sci/engine/object.h index ffc4ac2f3d..9ab6ca34da 100644 --- a/engines/sci/engine/object.h +++ b/engines/sci/engine/object.h @@ -169,7 +169,6 @@ public: } } - // NOTE: In real engine, -info- is treated as byte size void clearInfoSelectorFlag(infoSelectorFlags flag) { if (getSciVersion() == SCI_VERSION_3) { _infoSelectorSci3 &= ~flag; |