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

Switch back to >=

This commit is contained in:
Peter Evans 2018-03-30 18:49:32 -05:00
parent a23c7321f5
commit 54708e5110

View File

@ -396,7 +396,7 @@ apple2_dd_shift(apple2dd *drive, int pos)
drive->sector_pos += pos;
if (drive->sector_pos > ENC_ETRACK) {
if (drive->sector_pos >= ENC_ETRACK) {
// We need to reset the sector pos to zero, because...
drive->sector_pos = 0;
}