mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-03-06 14:27:44 +00:00
libretro: Add widescreen hack option
This commit is contained in:
parent
1e6740762d
commit
2702eb90bf
|
@ -348,7 +348,7 @@ void LibretroHostInterface::OnSystemDestroyed()
|
||||||
m_using_hardware_renderer = false;
|
m_using_hardware_renderer = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static std::array<retro_core_option_definition, 22> s_option_definitions = {{
|
static std::array<retro_core_option_definition, 23> s_option_definitions = {{
|
||||||
{"Console.Region",
|
{"Console.Region",
|
||||||
"Console Region",
|
"Console Region",
|
||||||
"Determines which region/hardware to emulate. Auto-Detect will use the region of the disc inserted.",
|
"Determines which region/hardware to emulate. Auto-Detect will use the region of the disc inserted.",
|
||||||
|
@ -437,6 +437,12 @@ static std::array<retro_core_option_definition, 22> s_option_definitions = {{
|
||||||
"others will break.",
|
"others will break.",
|
||||||
{{"true", "Enabled"}, {"false", "Disabled"}},
|
{{"true", "Enabled"}, {"false", "Disabled"}},
|
||||||
"false"},
|
"false"},
|
||||||
|
{"GPU.WidescreenHack",
|
||||||
|
"Widescreen Hack",
|
||||||
|
"Increases the field of view from 4:3 to 16:9 in 3D games. For 2D games, or games which use pre-rendered "
|
||||||
|
"backgrounds, this enhancement will not work as expected.",
|
||||||
|
{{"true", "Enabled"}, {"false", "Disabled"}},
|
||||||
|
"false"},
|
||||||
{"Display.CropMode",
|
{"Display.CropMode",
|
||||||
"Crop Mode",
|
"Crop Mode",
|
||||||
"Changes how much of the image is cropped. Some games display garbage in the overscan area which is typically "
|
"Changes how much of the image is cropped. Some games display garbage in the overscan area which is typically "
|
||||||
|
|
Loading…
Reference in a new issue