[Scummvm-git-logs] scummvm master -> 42cbbcd2df98ee980402cbbbe69569eaf6726805
sluicebox
noreply at scummvm.org
Wed Oct 16 19:59:03 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
42cbbcd2df SCI: Fix `Window` destructor not running
Commit: 42cbbcd2df98ee980402cbbbe69569eaf6726805
https://github.com/scummvm/scummvm/commit/42cbbcd2df98ee980402cbbbe69569eaf6726805
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2024-10-16T13:58:15-06:00
Commit Message:
SCI: Fix `Window` destructor not running
CID 1403309
Changed paths:
engines/sci/graphics/helpers.h
diff --git a/engines/sci/graphics/helpers.h b/engines/sci/graphics/helpers.h
index fce70837f50..50233468656 100644
--- a/engines/sci/graphics/helpers.h
+++ b/engines/sci/graphics/helpers.h
@@ -70,6 +70,7 @@ struct Port {
fontHeight(0), fontId(0), greyedOutput(false),
penClr(0), backClr(0xFF), penMode(0), counterTillFree(0) {
}
+ virtual ~Port() {}
bool isWindow() const { return id >= PORTS_FIRSTWINDOWID && id != 0xFFFF; }
};
More information about the Scummvm-git-logs
mailing list