mirror of
https://github.com/dschmenk/apple2pi.git
synced 2024-11-23 21:31:04 +00:00
Merge branch 'master' of https://github.com/dschmenk/apple2pi
This commit is contained in:
commit
3e9f86c3f0
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
||||
PACKAGE=a2pi
|
||||
VERSION=0.2.2
|
||||
VERSION=0.2.3
|
||||
DIST=$(PACKAGE)-$(VERSION)
|
||||
DISTDIR=./$(DIST)
|
||||
|
||||
|
14
debian/changelog
vendored
14
debian/changelog
vendored
@ -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
|
||||
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user