aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-10-02 04:46:50 +0000
committerTorbjörn Andersson2006-10-02 04:46:50 +0000
commitd7b786ea41838b6c3fe950fe01c97b97daca711d (patch)
tree455791fd73d3850c3909c688f63c11256ee64811 /common
parent42cb69827eaab991912022c28be09f2addffe55e (diff)
downloadscummvm-rg350-d7b786ea41838b6c3fe950fe01c97b97daca711d.tar.gz
scummvm-rg350-d7b786ea41838b6c3fe950fe01c97b97daca711d.tar.bz2
scummvm-rg350-d7b786ea41838b6c3fe950fe01c97b97daca711d.zip
Implemented "iconify window" opcode. This, of course, needs support in the
backend to work, and so far it's only done in the SDL backend. See the new kFeatureIconifyWindow flag. (This is patch #1568775.) svn-id: r24060
Diffstat (limited to 'common')
-rw-r--r--common/system.cpp1
-rw-r--r--common/system.h7
2 files changed, 6 insertions, 2 deletions
diff --git a/common/system.cpp b/common/system.cpp
index 22bbb9aba4..614dff6199 100644
--- a/common/system.cpp
+++ b/common/system.cpp
@@ -83,4 +83,3 @@ void OSystem::stopCD() {
void OSystem::updateCD() {
}
-
diff --git a/common/system.h b/common/system.h
index 91ea05b928..9508520cc1 100644
--- a/common/system.h
+++ b/common/system.h
@@ -128,7 +128,12 @@ public:
* This should only be set if it offers at least 3-4 bits of accuracy,
* as opposed to a single alpha bit.
*/
- kFeatureOverlaySupportsAlpha
+ kFeatureOverlaySupportsAlpha,
+
+ /**
+ * Set to true to iconify the window.
+ */
+ kFeatureIconifyWindow
};
/**