From: slack Date: Sat, 25 Apr 2009 14:05:06 +0000 (+0200) Subject: Fixed regression caused by previous commit X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=9d79199b137ec8659f5da79f362988b8edc934e3;p=wenboi.git Fixed regression caused by previous commit --- diff --git a/core/GBVideo.cc b/core/GBVideo.cc index 5fc3551..55dd82b 100644 --- a/core/GBVideo.cc +++ b/core/GBVideo.cc @@ -415,10 +415,10 @@ void GBVideo::draw() if (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)); + newscreen[line_base+screen_x+x] = color | ((pal_num + 1) << 4); } } - //logger.trace(pal_num + (1 << 4)); + //logger.trace((pal_num + 1) << 4); } cur_x = v[i].x;