Skip to content
Snippets Groups Projects
Commit abe29973 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Don't disable status line for Atari ST modes

Atari ST modes are 25 rows, they don't need to have the status
line turned off by default.
parent 469ebb1e
No related branches found
No related tags found
No related merge requests found
Pipeline #8348 passed
...@@ -3,6 +3,7 @@ Version 1.7b ...@@ -3,6 +3,7 @@ Version 1.7b
Fix APB and APU from top in BBC Micro Mode 7 Fix APB and APU from top in BBC Micro Mode 7
Fix blast-through in Mode 7 high ASCII mosaics Fix blast-through in Mode 7 high ASCII mosaics
Update Prestel/Mode 7 keybindings Update Prestel/Mode 7 keybindings
Don't disable status line for Atari ST modes
Version 1.6 Version 1.6
------------ ------------
......
...@@ -1832,12 +1832,17 @@ edit_list(struct bbslist **list, struct bbslist *item, char *listpath, int isdef ...@@ -1832,12 +1832,17 @@ edit_list(struct bbslist **list, struct bbslist *item, char *listpath, int isdef
iniSetString(&inifile, itemname, "Font", item->font, iniSetString(&inifile, itemname, "Font", item->font,
&ini_style); &ini_style);
} }
else if (i == SCREEN_MODE_ATARIST_40X25
|| i == SCREEN_MODE_ATARIST_80X25
|| i == SCREEN_MODE_ATARIST_80X25_MONO) {
SAFECOPY(item->font, font_names[0]);
iniSetString(&inifile, itemname, "Font", item->font,
&ini_style);
}
else if ((i == SCREEN_MODE_C64) || (i == SCREEN_MODE_C128_40) else if ((i == SCREEN_MODE_C64) || (i == SCREEN_MODE_C128_40)
|| (i == SCREEN_MODE_C128_80) || (i == SCREEN_MODE_ATARI) || (i == SCREEN_MODE_C128_80) || (i == SCREEN_MODE_ATARI)
|| (i == SCREEN_MODE_ATARI_XEP80) || (i == SCREEN_MODE_PRESTEL) || (i == SCREEN_MODE_BEEB) || (i == SCREEN_MODE_ATARI_XEP80) || (i == SCREEN_MODE_PRESTEL)
|| item->screen_mode == SCREEN_MODE_ATARIST_40X25 || (i == SCREEN_MODE_BEEB)) {
|| item->screen_mode == SCREEN_MODE_ATARIST_80X25
|| item->screen_mode == SCREEN_MODE_ATARIST_80X25_MONO) {
SAFECOPY(item->font, font_names[0]); SAFECOPY(item->font, font_names[0]);
iniSetString(&inifile, itemname, "Font", item->font, iniSetString(&inifile, itemname, "Font", item->font,
&ini_style); &ini_style);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment