Intellivision Fix y-value resolution

This commit is contained in:
alyosha-tas 2016-11-11 18:47:47 -05:00 committed by GitHub
parent d3cfb37a56
commit 592764890b
1 changed files with 4 additions and 4 deletions

View File

@ -555,9 +555,9 @@ namespace BizHawk.Emulation.Cores.Intellivision
{
bool pixel = mobs[j].Bit(7 - k);
if ((loc_x + k) < 159 && (loc_y + j) < 192 && pixel && vis)
if ((loc_x + k) < 159 && (loc_y*2 + j) < 192 && pixel && vis)
{
FrameBuffer[(loc_y + j) * 159 + loc_x + k] = ColorToRGBA(loc_color);
FrameBuffer[(loc_y*2 + j) * 159 + loc_x + k] = ColorToRGBA(loc_color);
}
}
}
@ -570,9 +570,9 @@ namespace BizHawk.Emulation.Cores.Intellivision
{
bool pixel = y_mobs[j].Bit(7 - k);
if ((loc_x + k) < 159 && (loc_y+8 + j) < 192 && pixel && vis)
if ((loc_x + k) < 159 && ((loc_y+4)*2 + j) < 192 && pixel && vis)
{
FrameBuffer[(loc_y+8 + j) * 159 + loc_x + k] = ColorToRGBA(loc_color);
FrameBuffer[((loc_y+4)*2 + j) * 159 + loc_x + k] = ColorToRGBA(loc_color);
}
}
}