Compare commits

..

No commits in common. "ab29f47004dc009203de869e440c247a08ad8d0d" and "531e4a8c3e245b340b2de7f21263abe43c598fa7" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -984,7 +984,7 @@ static void vipDrawHBias(VB *sim, World *world) {
/* Process all visible lines */
param = &sim->vip.ram[world->paramBase +
((y1 - world->gy) << 2) + (i << 1)];
for (y = y1; y < y2; y++, param += 4) {
for (y = y1; y < y2; y++, param += 2) {
/* Configure window bounds */
wnd.y1 = y;
@ -992,7 +992,7 @@ static void vipDrawHBias(VB *sim, World *world) {
/* Draw the background into the window */
vipDrawBackground(sim->vip.shadow[i], &wnd, world,
mx - busReadBuffer(param, VB_S16), my);
mx + busReadBuffer(param, VB_S16), my);
}
}