diff options
author | sluicebox | 2019-09-25 21:13:31 -0700 |
---|---|---|
committer | sluicebox | 2019-09-25 21:14:30 -0700 |
commit | 19a2195ba2cde329ccb9b9cd303c163b6ad4fe9c (patch) | |
tree | e35d7f1764c92c050a7d5215ac3040a9c8bdfe71 /engines | |
parent | 363f71358354f0fa5607253c9562d88107839afb (diff) | |
download | scummvm-rg350-19a2195ba2cde329ccb9b9cd303c163b6ad4fe9c.tar.gz scummvm-rg350-19a2195ba2cde329ccb9b9cd303c163b6ad4fe9c.tar.bz2 scummvm-rg350-19a2195ba2cde329ccb9b9cd303c163b6ad4fe9c.zip |
SCI32: Fix comment typo
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/graphics/frameout.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp index e20166b8ee..d299f8ea73 100644 --- a/engines/sci/graphics/frameout.cpp +++ b/engines/sci/graphics/frameout.cpp @@ -269,7 +269,6 @@ void GfxFrameout::kernelDeleteScreenItem(const reg_t object) { #pragma mark Planes void GfxFrameout::kernelAddPlane(const reg_t object) { - Plane *plane = _planes.findByObject(object); if (plane != nullptr) { plane->update(object); @@ -286,7 +285,7 @@ void GfxFrameout::kernelAddPlane(const reg_t object) { // kAddPlane is called several times, this detects the second call // which is for the import character dialog. If changeButton:value // is non-zero then the dialog is initializing. If the button isn't - // disabled then we havne't displayed the message box yet. There + // disabled then we havent't displayed the message box yet. There // are multiple changeButtons because the script clones the object. SegManager *segMan = g_sci->getEngineState()->_segMan; Common::Array<reg_t> changeDirButtons = _segMan->findObjectsByName("changeButton"); |