GameDB: More settings
This commit is contained in:
parent
adb2d6c316
commit
f80ead6a21
|
@ -70786,6 +70786,10 @@ SLES-00555:
|
||||||
name: "Hexen (Europe)"
|
name: "Hexen (Europe)"
|
||||||
controllers:
|
controllers:
|
||||||
- DigitalController
|
- DigitalController
|
||||||
|
traits:
|
||||||
|
- DisablePGXP # 2.5D, not beneficial.
|
||||||
|
settings:
|
||||||
|
gpuLineDetectMode: BasicTriangles # Fixes upscaled rendering.
|
||||||
metadata:
|
metadata:
|
||||||
publisher: "GT Interactive Software"
|
publisher: "GT Interactive Software"
|
||||||
developer: "Raven Software"
|
developer: "Raven Software"
|
||||||
|
@ -70808,7 +70812,9 @@ SLUS-00348:
|
||||||
controllers:
|
controllers:
|
||||||
- DigitalController
|
- DigitalController
|
||||||
traits:
|
traits:
|
||||||
- DisableUpscaling
|
- DisablePGXP # 2.5D, not beneficial.
|
||||||
|
settings:
|
||||||
|
gpuLineDetectMode: BasicTriangles # Fixes upscaled rendering.
|
||||||
metadata:
|
metadata:
|
||||||
publisher: "GT Interactive Software"
|
publisher: "GT Interactive Software"
|
||||||
developer: "Raven Software"
|
developer: "Raven Software"
|
||||||
|
@ -70827,6 +70833,10 @@ SLPS-00972:
|
||||||
name: "Hexen - Beyond Heretic (Japan)"
|
name: "Hexen - Beyond Heretic (Japan)"
|
||||||
controllers:
|
controllers:
|
||||||
- DigitalController
|
- DigitalController
|
||||||
|
traits:
|
||||||
|
- DisablePGXP # 2.5D, not beneficial.
|
||||||
|
settings:
|
||||||
|
gpuLineDetectMode: BasicTriangles # Fixes upscaled rendering.
|
||||||
metadata:
|
metadata:
|
||||||
publisher: "GameBank / GT Interactive Software"
|
publisher: "GameBank / GT Interactive Software"
|
||||||
developer: "Raven Software"
|
developer: "Raven Software"
|
||||||
|
@ -97109,6 +97119,7 @@ SLES-01064:
|
||||||
- DigitalController
|
- DigitalController
|
||||||
traits:
|
traits:
|
||||||
- DisableTrueColor
|
- DisableTrueColor
|
||||||
|
- DisableWidescreen # No effect.
|
||||||
metadata:
|
metadata:
|
||||||
publisher: "Capcom"
|
publisher: "Capcom"
|
||||||
developer: "Capcom Production Studio 2 / Laguna videogames"
|
developer: "Capcom Production Studio 2 / Laguna videogames"
|
||||||
|
@ -97132,6 +97143,7 @@ SLUS-00453:
|
||||||
- DigitalController
|
- DigitalController
|
||||||
traits:
|
traits:
|
||||||
- DisableTrueColor
|
- DisableTrueColor
|
||||||
|
- DisableWidescreen # No effect.
|
||||||
metadata:
|
metadata:
|
||||||
publisher: "Capcom"
|
publisher: "Capcom"
|
||||||
developer: "Capcom Production Studio 2 / Laguna videogames"
|
developer: "Capcom Production Studio 2 / Laguna videogames"
|
||||||
|
@ -135511,6 +135523,7 @@ SLPS-00630:
|
||||||
- DigitalController
|
- DigitalController
|
||||||
traits:
|
traits:
|
||||||
- DisableTrueColor
|
- DisableTrueColor
|
||||||
|
- DisableWidescreen # No effect.
|
||||||
codes:
|
codes:
|
||||||
- SLPS-00630
|
- SLPS-00630
|
||||||
- SLPS-91045
|
- SLPS-91045
|
||||||
|
|
|
@ -556,6 +556,8 @@ void ImGuiManager::DrawEnhancementsOverlay()
|
||||||
{
|
{
|
||||||
text.append(" WSHack");
|
text.append(" WSHack");
|
||||||
}
|
}
|
||||||
|
if (g_settings.gpu_line_detect_mode != GPULineDetectMode::Disabled)
|
||||||
|
text.append_format(" LD={}", Settings::GetLineDetectModeName(g_settings.gpu_line_detect_mode));
|
||||||
if (g_settings.gpu_pgxp_enable)
|
if (g_settings.gpu_pgxp_enable)
|
||||||
{
|
{
|
||||||
text.append(" PGXP");
|
text.append(" PGXP");
|
||||||
|
|
Loading…
Reference in New Issue