Skip to content

Commit

Permalink
Add larger slideshow
Browse files Browse the repository at this point in the history
  • Loading branch information
dschmenk committed Dec 16, 2024
1 parent 44e4e83 commit 71e04a3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file added images/apple/DHGR-BIGSHOW.PO
Binary file not shown.
2 changes: 1 addition & 1 deletion src/vmsrc/sysio.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ void syssetmark(M6502 *mpu)
if (trace) printf("FILEIO:SETMARK %d %lld\r\n", fd, pos);
pos = lseek(fd, pos, SEEK_SET);
*perr = 0;
if (pos == -1) *perr = errno;
if (pos < 0) *perr = errno;
PUSH_ESTK(*perr);
}
void syscreate(M6502 *mpu)
Expand Down

0 comments on commit 71e04a3

Please sign in to comment.