From: slack Date: Wed, 13 May 2009 19:14:19 +0000 (+0200) Subject: Fixed 2 bugs in sprite drawing X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=a6741d53a9cc8069488578df4534a75643031300;p=wenboi.git Fixed 2 bugs in sprite drawing - A bug with sprite priority (sprites with lower priority didn't draw under overlapping sprites with higher priority) - A memory corruption bug when a sprite went over the right edge of the screen :$ --- diff --git a/core/GBVideo.cc b/core/GBVideo.cc index 55dd82b..2981fe9 100644 --- a/core/GBVideo.cc +++ b/core/GBVideo.cc @@ -371,11 +371,11 @@ void GBVideo::draw() //logger.trace("LY=",LY," sprites=",v.size()); // draw sprites - int cur_x = 0; for (u32 i=0; i> mx)&1) << 1 | @@ -412,8 +412,9 @@ void GBVideo::draw() if (color != 0) { - if (newscreen[line_base+screen_x+x]==0 || - check_bit(v[i].flags,7)==false) + if (newscreen[line_base+screen_x+x] >> 4 == 0 && + (newscreen[line_base+screen_x+x]==0 || + check_bit(v[i].flags,7)==false)) { newscreen[line_base+screen_x+x] = color | ((pal_num + 1) << 4); } @@ -421,7 +422,6 @@ void GBVideo::draw() //logger.trace((pal_num + 1) << 4); } - cur_x = v[i].x; } } // Apply pallettes to the line