summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/stars/draw.h2
-rw-r--r--modules/stars/starslib.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/stars/draw.h b/modules/stars/draw.h
index 58a4a36..5010374 100644
--- a/modules/stars/draw.h
+++ b/modules/stars/draw.h
@@ -24,7 +24,7 @@ static inline int draw_pixel(fb_fragment_t *f, int x, int y, uint32_t pixel)
}
/* FIXME this assumes stride is aligned to 4 */
- pixels[(y * f->width + (f->stride >> 2)) + x] = pixel;
+ pixels[(y * (f->width + (f->stride >> 2))) + x] = pixel;
return 1;
}
diff --git a/modules/stars/starslib.c b/modules/stars/starslib.c
index 3c1905c..9d43062 100644
--- a/modules/stars/starslib.c
+++ b/modules/stars/starslib.c
@@ -114,7 +114,7 @@ int process_point( struct universe *u, struct return_point *rp )
}
} else {
int m = OPACITY_MAX*((u->depth-u->iterator->z)*4)/u->depth;
- if ( m>=OPACITY_MAX ){ m=OPACITY_MAX-1; }
+ if ( m>OPACITY_MAX ){ m=OPACITY_MAX; }
u->iterator->z = u->iterator->z - 1;
#ifdef DEBUG
printf("RETURN POINT: %lx\n", (long unsigned int )u->iterator);
© All Rights Reserved