diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-02-27 12:12:04 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2010-02-27 12:12:04 +0100 |
commit | 732af8778a49cacbfffe3c451125be84d7f86ee2 (patch) | |
tree | c68b92d1c18c07c92e1318bc5d880feb6ba9f7a8 /src/pattern_sim.c | |
parent | 6170796e45768ed01b93304c1e363ef4a2b5a8fe (diff) |
More tests for odd situations
Diffstat (limited to 'src/pattern_sim.c')
-rw-r--r-- | src/pattern_sim.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pattern_sim.c b/src/pattern_sim.c index a29a8f0e..9542e494 100644 --- a/src/pattern_sim.c +++ b/src/pattern_sim.c @@ -307,10 +307,6 @@ int main(int argc, char *argv[]) for ( x=0; x<image.width; x++ ) { for ( y=0; y<image.height; y++ ) { powder[x+w*y] += (double)image.data[x+w*y]; - if ( image.data[x+w*y] < 0 ) { - STATUS("Negative! %f %i %i\n", - image.data[x+w*y], x, y); - } } } |