Skip to content

Commit 6cfa1c2

Browse files
author
iss
committed
fix: issue 116
1 parent c314cda commit 6cfa1c2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

6551.c

+7-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,13 @@ void acia_init( struct acia *acia, struct machine *oric )
146146
#endif
147147
case ACIA_TYPE_NONE:
148148
default:
149-
acia_init_none( acia );
149+
if ( oric->type == MACH_TELESTRAT )
150+
{
151+
oric->aciabackend = ACIA_TYPE_LOOPBACK;
152+
acia_init_loopback( acia );
153+
}
154+
else
155+
acia_init_none( acia );
150156
break;
151157
}
152158
}

ChangeLog.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Oricutron ChangeLog
33

44
pre-release changes (work in progress)
55
--------------------------------------
6+
* Fixed issue #116 no ACIA in Telestrat mode
67
* Added read-track and write-track support for FDC (assinie)
78
* Center windows on return from fullscreen mode (rzumer)
89
* Fixed Z-flag in BCD mode (iss)

0 commit comments

Comments
 (0)