Commit b76dddcd authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Drawable.c: make doRoundRobin a Boolean

parent b814aef3
...@@ -1241,7 +1241,7 @@ FIXME: All drawables should be set as synchronized and never marked as ...@@ -1241,7 +1241,7 @@ FIXME: All drawables should be set as synchronized and never marked as
* round-robin and if the bitmaps are all synchronized. * round-robin and if the bitmaps are all synchronized.
*/ */
int doRoundRobin = (nxagentSynchronization.pDrawable != NULL); Bool doRoundRobin = (nxagentSynchronization.pDrawable != NULL);
nxagentSynchronization.abort = False; nxagentSynchronization.abort = False;
...@@ -1262,7 +1262,7 @@ FIXME: All drawables should be set as synchronized and never marked as ...@@ -1262,7 +1262,7 @@ FIXME: All drawables should be set as synchronized and never marked as
if (!nxagentSynchronization.abort && if (!nxagentSynchronization.abort &&
nxagentSynchronization.windowBitmaps == 0 && nxagentSynchronization.windowBitmaps == 0 &&
doRoundRobin == 0) !doRoundRobin)
{ {
if (nxagentCorruptedWindows > 0) if (nxagentCorruptedWindows > 0)
{ {
...@@ -1294,7 +1294,7 @@ FIXME: All drawables should be set as synchronized and never marked as ...@@ -1294,7 +1294,7 @@ FIXME: All drawables should be set as synchronized and never marked as
if (!nxagentSynchronization.abort && if (!nxagentSynchronization.abort &&
nxagentSynchronization.backgroundBitmaps == 0 && nxagentSynchronization.backgroundBitmaps == 0 &&
doRoundRobin == 0) !doRoundRobin)
{ {
if (nxagentCorruptedBackgrounds > 0) if (nxagentCorruptedBackgrounds > 0)
{ {
...@@ -1328,7 +1328,7 @@ FIXME: All drawables should be set as synchronized and never marked as ...@@ -1328,7 +1328,7 @@ FIXME: All drawables should be set as synchronized and never marked as
if (!nxagentSynchronization.abort && if (!nxagentSynchronization.abort &&
nxagentSynchronization.pixmapBitmaps == 0 && nxagentSynchronization.pixmapBitmaps == 0 &&
doRoundRobin == 0) !doRoundRobin)
{ {
#ifdef TEST #ifdef TEST
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment