1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-02 07:41:32 +00:00

Backward steps require adjacent phases

This commit is contained in:
Peter Evans 2018-02-20 14:30:20 -06:00
parent 28061c1d11
commit c7fbb4aa50

View File

@ -217,7 +217,7 @@ Test(apple2_dd, phaser)
cr_assert_eq(drive->track_pos, 1);
// And test that we can go backward
drive->phase_state = 0;
drive->phase_state = 0x2;
apple2_dd_phaser(drive);
cr_assert_eq(drive->track_pos, 0);
}