Skip to content

Commit

Permalink
floppy: Read test map header should be at fixed absolute location.
Browse files Browse the repository at this point in the history
Fixes #27
  • Loading branch information
keirf committed Aug 22, 2020
1 parent 78c9c53 commit 2e88cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testkit/floppy.c
Original file line number Diff line number Diff line change
Expand Up @@ -458,8 +458,8 @@ static void drive_read_test(unsigned int drv, struct char_row *r)
}
}

r->y += 1;
r->x += 4;
r->y = 4;
r->x = 4;
sprintf(s, "------ Lower ------ | ------ Upper ------");
print_line(r);
r->y++;
Expand Down

0 comments on commit 2e88cf2

Please sign in to comment.