mirror of
https://github.com/rricharz/Tek4010.git
synced 2026-01-11 23:53:16 +00:00
version 1.5.7b, see versions.txt
This commit is contained in:
parent
bf580fd30c
commit
c322e2ef31
10
tek4010.c
10
tek4010.c
@ -311,14 +311,14 @@ int tek4010_checkReturnToAlpha(int ch)
|
||||
{
|
||||
if (ch == 27)
|
||||
savemode = mode;
|
||||
if ((ch==31) || (ch==13) || (ch==27) || (ch==12)) {
|
||||
if ((ch==31) || (ch==13) || (ch==27) /*|| (ch==12)*/) {
|
||||
if (DEBUG && mode) printf("Going to alpha mode\n");
|
||||
mode = 0;
|
||||
showCursor = 0;
|
||||
if (ch == 12) {
|
||||
tube_doClearPersistent = 1;
|
||||
todo = 0;
|
||||
}
|
||||
//if (ch == 12) {
|
||||
// tube_doClearPersistent = 1;
|
||||
// todo = 0;
|
||||
//}
|
||||
if (ch == 27) {
|
||||
mode = 30;
|
||||
todo = 0;
|
||||
|
||||
2
tube.c
2
tube.c
@ -284,7 +284,7 @@ void tube_init(int argc, char* argv[])
|
||||
char *argv2[20];
|
||||
size_t bufsize = 127;
|
||||
int firstArg = 1;
|
||||
printf("tek4010 version 1.5.6\n");
|
||||
printf("tek4010 version 1.5.7b\n");
|
||||
windowName = "Tektronix 4010/4014 emulator";
|
||||
if ((argc<2) || (argc>19)) {
|
||||
printf("Error:number of arguments\n");
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
Version 1.5.7b of January 27, 2020
|
||||
==================================
|
||||
- ESC FF clears the screen, FF alone does not, as in the original hardware
|
||||
Note that version 1.5.7 (without the b) had a bug never clearing the screen
|
||||
|
||||
Version 1.5.6 of December 2, 2019
|
||||
=================================
|
||||
- Improved handling of PLOT 10 data
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user