Jesse Barnes wrote: Why are you comparing booleans to TRUE and worse then negating the result? if( !noWait ) Is clearer. - waitForVideoSync (s); + if (!(noWait == TRUE)) + waitForVideoSync (s); Barry