after applying this fix the 'seed with critters' button appears to work,
but after a couple of seconds shoes crashes (vista).
still no luck with the drawing though.
Am 06.02.2008, 00:21 Uhr, schrieb why the lucky stiff
<[EMAIL PROTECTED]>:
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