make char9 basic option

This commit is contained in:
Wengier
2021-05-28 15:53:13 -04:00
parent 7b0187ca35
commit d325103466
4 changed files with 7 additions and 4 deletions

View File

@@ -822,7 +822,7 @@ pc-98 force ibm keyboard layout = false
# Slightly degrades visual image quality. Has a tiny impact on performance
# When using xBRZ scaler with 'surface' output, aspect ratio correction is done by the scaler itself, so none of the above apply
# Possible values: false, true, 0, 1, yes, no, nearest, bilinear.
#DOSBOX-X-ADV:# char9: Allow 9-pixel wide text mode fonts.
# char9: Allow 9-pixel wide text mode fonts instead of 8-pixel wide fonts.
# euro: Display Euro symbol instead of the specified ASCII character (33-255).
# For example, setting it to 128 allows Euro symbol to be displayed instead of C-cedilla.
# doublescan: If set, doublescanned output emits two scanlines for each source line, in the
@@ -901,7 +901,7 @@ pc-98 force ibm keyboard layout = false
frameskip = 0
#DOSBOX-X-ADV:alt render = false
aspect = false
#DOSBOX-X-ADV:char9 = true
char9 = true
euro = -1
doublescan = true
scaler = normal2x

View File

@@ -246,6 +246,7 @@ pc-98 force ibm keyboard layout = false
# Slightly degrades visual image quality. Has a tiny impact on performance
# When using xBRZ scaler with 'surface' output, aspect ratio correction is done by the scaler itself, so none of the above apply
# Possible values: false, true, 0, 1, yes, no, nearest, bilinear.
# char9: Allow 9-pixel wide text mode fonts instead of 8-pixel wide fonts.
# euro: Display Euro symbol instead of the specified ASCII character (33-255).
# For example, setting it to 128 allows Euro symbol to be displayed instead of C-cedilla.
# doublescan: If set, doublescanned output emits two scanlines for each source line, in the
@@ -290,6 +291,7 @@ pc-98 force ibm keyboard layout = false
# You can also change the blinking rate by setting an interger between 1 (fastest) and 7 (slowest), or 0 for no cursor.
frameskip = 0
aspect = false
char9 = true
euro = -1
doublescan = true
scaler = normal2x

View File

@@ -822,7 +822,7 @@ pc-98 show graphics layer on initialize = true
# Slightly degrades visual image quality. Has a tiny impact on performance
# When using xBRZ scaler with 'surface' output, aspect ratio correction is done by the scaler itself, so none of the above apply
# Possible values: false, true, 0, 1, yes, no, nearest, bilinear.
# char9: Allow 9-pixel wide text mode fonts.
# char9: Allow 9-pixel wide text mode fonts instead of 8-pixel wide fonts.
# euro: Display Euro symbol instead of the specified ASCII character (33-255).
# For example, setting it to 128 allows Euro symbol to be displayed instead of C-cedilla.
# doublescan: If set, doublescanned output emits two scanlines for each source line, in the

View File

@@ -2207,7 +2207,8 @@ void DOSBOX_SetupConfigSections(void) {
Pstring->SetBasic(true);
Pbool = secprop->Add_bool("char9",Property::Changeable::Always,true);
Pbool->Set_help("Allow 9-pixel wide text mode fonts.");
Pbool->Set_help("Allow 9-pixel wide text mode fonts instead of 8-pixel wide fonts.");
Pbool->SetBasic(true);
Pint = secprop->Add_int("euro",Property::Changeable::Always,-1);
Pint->Set_help("Display Euro symbol instead of the specified ASCII character (33-255).\n"