This commit is contained in:
David Schmenk 2021-05-11 07:51:15 -07:00
commit 3e9f86c3f0
3 changed files with 16 additions and 2 deletions

View File

@ -1,5 +1,5 @@
PACKAGE=a2pi
VERSION=0.2.2
VERSION=0.2.3
DIST=$(PACKAGE)-$(VERSION)
DISTDIR=./$(DIST)

14
debian/changelog vendored
View File

@ -1,4 +1,16 @@
a2pi (0.2.2-3) unstable; urgency=low
a2pi (0.2.3-5) unstable; urgency=medium
* Flush writes to piDrives
-- David Schmenk <dschmenk@mail.com> Sun, 9 May 2021 12:28:00 -0800
a2pi (0.2.3-4) unstable; urgency=low
* A2Pi 6.5 updates
-- David Schmenk <dschmenk@mail.com> Sun, 25 Apr 2021 13:44:30 -0800
a2pi (0.2.3-3) unstable; urgency=low
* First Stretch release

View File

@ -183,6 +183,8 @@ int vdrvwrite(int afd, int drive, int block)
lseek(vfd, block * 512, 0);
if (write(vfd, block_buff, 512) != 512)
err = 0x27; /* ProDOS I/O error */
else
fsync(vfd);
}
else
err = 0x28; /* ProDOS No device connected error */