[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: default values of 'false' in data description
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Wed, 13 Sep 2006 14:05:50 -0300
> shouldLoop = sounds[1].loop or true -- (nil or true) => true
> shouldLoop = sounds[2].loop or true -- (false or true) => true
Try
shouldLoop = not not sounds[2].loop