Implemented it for the PCjr as well.

This commit is contained in:
OBattler
2025-08-27 01:47:41 +02:00
parent 97b122b143
commit 120a6e8b8b
6 changed files with 306 additions and 251 deletions

View File

@@ -789,6 +789,23 @@ static const device_config_t pcjr_config[] = {
{ .description = "" }
}
},
{
.name = "double_type",
.description = "Line doubling type",
.type = CONFIG_SELECTION,
.default_string = NULL,
.default_int = DOUBLE_NONE,
.file_filter = NULL,
.spinner = { 0 },
.selection = {
{ .description = "None", .value = DOUBLE_NONE },
{ .description = "Simple doubling", .value = DOUBLE_SIMPLE },
{ .description = "sRGB interpolation", .value = DOUBLE_INTERPOLATE_SRGB },
{ .description = "Linear interpolation", .value = DOUBLE_INTERPOLATE_LINEAR },
{ .description = "" }
},
.bios = { { 0 } }
},
{
.name = "apply_hd",
.description = "Apply overscan deltas",