aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/helpers.h
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2011-02-28 20:32:46 +0100
committerWillem Jan Palenstijn2011-02-28 21:37:12 +0100
commitdb536da8d3838bc69cd2c18f49d62e9151d425a5 (patch)
tree4b6e413413084426de15e8ffaad0219837c44685 /engines/sci/graphics/helpers.h
parentce288024b495032d15940dc4b93069a3bc845f48 (diff)
downloadscummvm-rg350-db536da8d3838bc69cd2c18f49d62e9151d425a5.tar.gz
scummvm-rg350-db536da8d3838bc69cd2c18f49d62e9151d425a5.tar.bz2
scummvm-rg350-db536da8d3838bc69cd2c18f49d62e9151d425a5.zip
SCI: Skip Ports when iterating over Windows in GC
Diffstat (limited to 'engines/sci/graphics/helpers.h')
-rw-r--r--engines/sci/graphics/helpers.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/sci/graphics/helpers.h b/engines/sci/graphics/helpers.h
index f6cb214a2b..3c6515ae73 100644
--- a/engines/sci/graphics/helpers.h
+++ b/engines/sci/graphics/helpers.h
@@ -45,6 +45,10 @@ typedef int GuiResourceId; // is a resource-number and -1 means no parameter giv
typedef int16 TextAlignment;
+#define PORTS_FIRSTWINDOWID 2
+#define PORTS_FIRSTSCRIPTWINDOWID 3
+
+
struct Port {
uint16 id;
int16 top, left;
@@ -62,6 +66,8 @@ struct Port {
fontHeight(0), fontId(0), greyedOutput(false),
penClr(0), backClr(0xFF), penMode(0), counterTillFree(0) {
}
+
+ bool isWindow() const { return id >= PORTS_FIRSTWINDOWID && id != 0xFFFF; }
};
struct Window : public Port, public Common::Serializable {