From e75aade2236c857a44f9d49aa4221902c6346c52 Mon Sep 17 00:00:00 2001 From: sorgelig Date: Wed, 29 Apr 2020 20:25:06 +0800 Subject: [PATCH] AtartST: show 60hz mono in config line. --- support/st/st_tos.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/st/st_tos.cpp b/support/st/st_tos.cpp index 35e5e5e..636157b 100644 --- a/support/st/st_tos.cpp +++ b/support/st/st_tos.cpp @@ -625,7 +625,7 @@ const char* tos_get_cfg_string(int num) if (!((tmp.system_ctrl >> 23) & 3) && (tmp.system_ctrl & TOS_CONTROL_BLITTER)) strcat(str, "B "); if (tmp.system_ctrl & TOS_CONTROL_VIKING) strcat(str, "V "); if (tmp.system_ctrl & TOS_CONTROL_VIDEO_AR) strcat(str, "W "); - strcat(str, (tmp.system_ctrl & TOS_CONTROL_VIDEO_COLOR) ? "C " : "M "); + strcat(str, (tmp.system_ctrl & TOS_CONTROL_VIDEO_COLOR) ? "C " : (tmp.system_ctrl & TOS_CONTROL_MDE60) ? "M6 " : "M "); if (!(tmp.system_ctrl & TOS_CONTROL_BORDER)) strcat(str, "F "); int sl = (tmp.system_ctrl >> 20) & 3; if (sl) sprintf(str + strlen(str), "S%d ", sl);