Skip to content

Commit

Permalink
GameDB: Destroy All Humans! 2 PAL Title
Browse files Browse the repository at this point in the history
Title includes exclamation mark.
"Make War, Not Love!" is a tagline, not part of the title. Removed.
  • Loading branch information
Dreadmoth authored and TheTechnician27 committed Jul 4, 2024
1 parent 84e3646 commit 28aa636
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin/resources/GameIndex.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12976,7 +12976,7 @@ SLED-54328:
cpuSpriteRenderBW: 2 # Fixes broken sprite rendering and crowd rendering.
cpuSpriteRenderLevel: 2 # Needed for above.
SLED-54401:
name: "Destroy All Humans 2 [Demo]"
name: "Destroy All Humans! 2 [Demo]"
region: "PAL-E"
gsHWFixes:
textureInsideRT: 1 # Fixes shadow maps.
Expand Down Expand Up @@ -24406,7 +24406,7 @@ SLES-54383:
name: "Casper and The Ghostly Trio"
region: "PAL-M6"
SLES-54384:
name: "Destroy All Humans 2 - Make War not Love"
name: "Destroy All Humans! 2"
region: "PAL-M5"
gsHWFixes:
textureInsideRT: 1 # Fixes shadow maps.
Expand Down
21 changes: 18 additions & 3 deletions pcsx2-qt/Settings/GraphicsSettingsWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1113,18 +1113,33 @@ void GraphicsSettingsWidget::populateUpscaleMultipliers(u32 max_upscale_multipli
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "1.5x Native"), 1.5f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "1.75x Native"), 1.75f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "2x Native (~720p)"), 2.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "2.25x Native"), 2.25f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "2.5x Native"), 2.5f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "2.75x Native"), 2.75f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "3x Native (~1080p)"), 3.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "3.5x Native"), 3.5f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "4x Native (~1440p/2K)"), 4.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "5x Native (~1620p)"), 5.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "6x Native (~2160p/4K)"), 6.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "7x Native (~2520p)"), 7.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "8x Native (~2880p/5K)"), 8.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "9x Native (~3240p)"), 9.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "10x Native (~3600p/6K)"), 10.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "11x Native (~3960p/7K)"), 11.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "12x Native (~4320p/8K)"), 12.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "13x Native (~4680p)"), 13.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "14x Native (~5040p/9K)"), 14.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "15x Native (~5400p)"), 15.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "16x Native (~5760p/10K)"), 16.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "17x Native (~6120p/11K)"), 17.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "18x Native (~6480p)"), 18.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "19x Native (~6840p/12K)"), 19.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "20x Native (~7200p/13K)"), 20.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "21x Native (~7560p)"), 21.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "22x Native (~7920p/14K)"), 22.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "23x Native (~8280p)"), 23.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "24x Native (~8640p/15K)"), 24.0f},
{QT_TRANSLATE_NOOP("GraphicsSettingsWidget", "25x Native (~9000p/16K)"), 25.0f},
};
static constexpr u32 max_template_multiplier = 8;
static constexpr u32 max_template_multiplier = 25;

// Limit the dropdown to 12x if we're not showing advanced settings. Save the noobs.
static constexpr u32 max_non_advanced_multiplier = 12;
Expand Down

0 comments on commit 28aa636

Please sign in to comment.