|
From: | Werner LEMBERG |
Subject: | Re: [ft] Tutorial example segmentation fault |
Date: | Sat, 03 Sep 2005 09:38:27 +0200 (CEST) |
> if ( i >= WIDTH || j >= HEIGHT ) > continue; Thanks for reporting. These lines should be if ( i < 0 || j < 0 || i >= WIDTH || j >= HEIGHT ) continue; then it works just fine. I'll update the example file accordingly. Werner
[Prev in Thread] | Current Thread | [Next in Thread] |