Index: /trunk/src/VBox/Main/src-server/CaptureScreenSettingsImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/CaptureScreenSettingsImpl.cpp	(revision 75261)
+++ /trunk/src/VBox/Main/src-server/CaptureScreenSettingsImpl.cpp	(revision 75262)
@@ -204,5 +204,5 @@
     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
 
-    *enabled = m->bd->fEnabled;
+    *enabled = m->bd->fEnabled ? TRUE : FALSE;
 
     return S_OK;
@@ -213,5 +213,5 @@
     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
 
-    if (m->bd->fEnabled != enabled)
+    if (m->bd->fEnabled != RT_BOOL(enabled))
     {
         alock.release();
