1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-01-14 03:31:02 +00:00

Add larger slideshow

This commit is contained in:
David Schmenk 2024-12-15 21:44:06 -08:00
parent 44e4e835e5
commit 71e04a3cdc
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -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)