On Tue, Feb 05, 2008 at 02:48:39PM -0800, Jesse Thompson wrote:
> Hmm, anyone else have life.rb working on Win32?
> I see just a back screen. Slider slides, buttons push (and flash the screen
> white for a moment) but the playing field is solid black.
Okay, the problem is the @plain flow.
These lines:
@plain.clear if @plain
@plain = $app.flow(...)
Should be:
if @plain
@plain.clear
else
@plain = $app.flow(...)
end
Otherwise a whole lot of extra flows start piling up behind the
scenes. Once I fix ticket #55, bugs like this will be easy to
spot.
_why